forked from qingstor/qsctl
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 731 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# coding:utf-8
from setuptools import setup, find_packages
setup(
name='qsctl',
version='1.1.0',
description='Advanced command line tool for QingStor.',
long_description=open('README.rst', 'rb').read().decode('utf-8'),
keywords='yunify qingcloud qingstor qsctl object_storage',
author='QingStor Dev Team',
author_email='qs_dev_group@yunify.com ',
url='https://www.qingstor.com',
scripts=['bin/qsctl', 'bin/qsctl.cmd'],
packages=find_packages('.'),
package_dir={'qsctl': 'qingstor'},
namespace_packages=['qingstor'],
include_package_data=True,
install_requires=[
'argparse >= 1.1',
'PyYAML >= 3.1',
'qingstor-sdk',
'docutils >= 0.10',
])