-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
114 lines (93 loc) · 3.27 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# -*- coding: utf-8 -*-
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from setuptools import setup, find_packages
import importlib
import io
import logging
import os
import sys
logger = logging.getLogger(__name__)
PY2 = sys.version_info[0] == 2 and sys.version_info[1] >= 7
if not PY2:
raise NotImplementedError((
"ucloud-sdk-python2 should be used in 2.7"
"and above of python interpreter"
))
def load_version():
return importlib.import_module(
"ucloud.version", os.path.join("ucloud", "version.py")
).version
def load_long_description():
try:
with io.open("README.md", encoding="utf-8") as f:
return f.read()
except IOError:
return ""
def load_requirements(requirements_file):
try:
with io.open(requirements_file, encoding="utf-8") as f:
return list(f.readlines())
except IOError:
return []
dependencies = load_requirements("requirements.txt")
dependencies_test = dependencies + [
'flake8>=3.6.0',
'pytest',
'pytest-cov',
]
dependencies_doc = dependencies + ['sphinx']
dependencies_ci = list(set(dependencies_test + dependencies_doc))
dependencies_dev = list(set(dependencies_ci + ['black']))
def do_setup():
setup(
name="ucloud-sdk-python2",
description="UCloud Service Development Kit - Python",
long_description=load_long_description(),
long_description_content_type='text/markdown',
license="Apache License 2.0",
version=load_version(),
packages=find_packages(exclude=["tests*"]),
package_data={"": []},
include_package_data=True,
zip_safe=False,
install_requires=dependencies,
extras_require={
"test": dependencies_test,
"doc": dependencies_doc,
"dev": dependencies_dev,
"ci": dependencies_ci,
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2 :: Only",
"Topic :: Software Development",
],
author="ucloud",
author_email="[email protected]",
url="https://github.com/ucloud/ucloud-sdk-python2",
python_requires=">=2.7",
)
if __name__ == "__main__":
do_setup()