This commit is contained in:
ahmadbilalkhalid 2019-09-14 20:26:44 +05:00
commit 0976a3e2ef
10 changed files with 748 additions and 121 deletions

19
setup.py Normal file
View file

@ -0,0 +1,19 @@
import setuptools
setuptools.setup(
name='ucloud_common',
version='0.5.4',
description='Common Code shared by most of ucloud projects',
url='https://code.ungleich.ch/ucloud/ucloud_common',
author='ungleich',
author_email='hacking@ungleich.ch',
packages=setuptools.find_packages(),
install_requires=[
'etcd3-wrapper',
'python-decouple'
],
classifiers=[
'Programming Language :: Python :: 3',
],
python_requires='>=3.5',
)