forked from uncloud/uncloud
35 lines
No EOL
1.2 KiB
Python
35 lines
No EOL
1.2 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(name='ucloud',
|
|
version='0.1',
|
|
description='All ucloud server components.',
|
|
url='https://code.ungleich.ch/ucloud/ucloud',
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
|
'Programming Language :: Python :: 3'
|
|
],
|
|
author='ungleich',
|
|
author_email='technik@ungleich.ch',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'requests',
|
|
'python-decouple',
|
|
'flask',
|
|
'flask-restful',
|
|
'bitmath',
|
|
'pyotp',
|
|
'sshtunnel',
|
|
'sphinx',
|
|
'pynetbox',
|
|
'sphinx-rtd-theme',
|
|
'etcd3_wrapper @ https://code.ungleich.ch/ungleich-public/etcd3_wrapper/repository/master/archive.tar.gz#egg=etcd3_wrapper',
|
|
'etcd3 @ https://github.com/kragniz/python-etcd3/tarball/master#egg=etcd3',
|
|
],
|
|
scripts=['bin/ucloud'],
|
|
zip_safe=False) |