uncloud-cli/setup.py

29 lines
888 B
Python
Raw Normal View History

2019-12-02 17:37:14 +00:00
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
2019-12-31 14:54:08 +00:00
setup(name='uncloud_cli',
2019-12-02 17:37:14 +00:00
version='0.1',
2019-12-31 14:54:08 +00:00
description='A utility to interact with uncloud server.',
url='https://code.ungleich.ch/uncloud/uncloud-cli',
2019-12-02 17:37:14 +00:00
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',
license='GPLv3',
packages=find_packages(),
install_requires=[
'requests',
'python-decouple',
'pyotp',
'click'
],
2019-12-31 14:54:08 +00:00
scripts=['bin/uncloud-cli'],
zip_safe=False)