forked from ss1917/ops_sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (57 loc) · 2.18 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python
# -*-coding:utf-8-*-
""""
author : shenshuo
date : 2018年2月5日13:37:54
desc : OPS SDK
"""
import sys
import os
import re
from io import open
from distutils.core import setup
version = '0.0.88'
if sys.version_info < (2, 7) or (3, 0) <= sys.version_info < (3, 6):
print('Finit requires at least Python 2.7 or 3.6 to run.')
sys.exit(1)
# with open(os.path.join('.', '__init__.py'), encoding='utf-8') as f:
# version = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", f.read(), re.M).group(1)
def get_data_files():
data_files = [
('share/doc/ops_sdk', ['README.md'])
]
return data_files
def get_install_requires():
requires = ['fire==0.4.0', 'shortuuid==1.0.1', 'pymysql==0.9.3', 'sqlalchemy==1.3.23', 'python3-pika==0.9.14',
'PyJWT==2.0.1', 'requests==2.25.1', 'redis==2.10.6', 'tornado>=6.0', 'loguru>=0.5.3',
'cryptography==37.0.2', 'aliyun-python-sdk-core-v3==2.13.11', 'aliyun-python-sdk-dysmsapi==2.1.1',
'python-dateutil==2.7.5', 'ldap3==2.6', 'pydantic>=1.7', 'pycryptodome==3.15.0', 'rsa==4.0']
# if sys.platform.startswith('win'):
# requires.append('bottle')
return requires
setup(
name='opssdk',
version=version,
description="运维SDK",
packages=['opssdk', 'opssdk.logs', 'opssdk.operate', 'opssdk.install', 'opssdk.get_info', 'opssdk.utils', 'websdk'
, 'websdk.apis', 'websdk.cloud', 'websdk.utils'],
url='https://github.com/ss1917/ops_sdk/',
license='GPLv3',
keywords="ops,opencodo,devops",
install_requires=get_install_requires(),
author='shenshuo',
author_email='191715030@qq.com',
long_description='SDK of the operation and maintenance script logs operate',
include_package_data=True,
data_files=get_data_files(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console :: Curses',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
platforms='any'
)