31 lines
974 B
Python
31 lines
974 B
Python
import os
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(name='ucloud_cli',
|
|
version='0.1',
|
|
description='A utility to interact with ucloud server.',
|
|
url='https://code.ungleich.ch/ucloud/ucloud-cli',
|
|
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'
|
|
],
|
|
scripts=['bin/ucloud-cli'],
|
|
data_files=[(os.path.expanduser('~/ucloud/'), ['conf/ucloud-cli.conf'])],
|
|
zip_safe=False)
|