5 lines
97 B
Python
5 lines
97 B
Python
from os import environ
|
|
from setuptools import setup
|
|
|
|
setup(version=environ.get('VERSION', None))
|