forked from kiwitcms/Kiwi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (44 loc) · 1.49 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
# pylint: disable=missing-docstring
from setuptools import setup, find_packages
import tcms
def get_install_requires():
requires = []
links = []
with open('requirements/base.txt', 'r') as file:
for line in file:
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_REQUIRES, DEPENDENCY_LINKS = get_install_requires()
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(),
author='various',
maintainer='Kiwi TCMS',
maintainer_email='[email protected]',
url='https://github.com/kiwitcms/Kiwi/',
license='GPLv2+',
keywords='test case',
install_requires=INSTALL_REQUIRES,
dependency_links=DEPENDENCY_LINKS,
packages=find_packages(),
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.5',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
],
)