forked from kiwitcms/Kiwi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (50 loc) · 1.85 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
# pylint: disable=missing-docstring
from setuptools import setup, find_packages
import tcms
def get_install_requires(path):
requires = []
links = []
with open(path, 'r') as file:
for line in file:
if line.startswith('-r '):
continue
dep_line = line.strip()
parts = dep_line.split('#egg=')
if len(parts) == 2:
links.append(dep_line)
requires.append(parts[1])
else:
requires.append(dep_line)
return requires, links
INSTALL_TARBALLS, DEPENDENCY_TARBALLS = get_install_requires('requirements/tarballs.txt')
INSTALL_BASE, DEPENDENCY_BASE = get_install_requires('requirements/base.txt')
INSTALL_REQUIRES = INSTALL_TARBALLS + INSTALL_BASE
DEPENDENCY_LINKS = DEPENDENCY_TARBALLS + DEPENDENCY_BASE
def get_long_description():
with open('README.rst', 'r') as file:
return file.read()
setup(
name='kiwitcms',
version=tcms.__version__,
description='Test Case Management System',
long_description=get_long_description(),
maintainer='Kiwi TCMS',
maintainer_email='info@kiwitcms.org',
url='https://github.com/kiwitcms/Kiwi/',
license='GPLv2+',
keywords='test case',
install_requires=INSTALL_REQUIRES,
dependency_links=DEPENDENCY_LINKS,
packages=find_packages(exclude=['kiwi_lint*',
'*.tests',
'tcms.settings.test']),
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
],
)