-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
54 lines (50 loc) · 1.87 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
project_url = 'https://github.com/ociu/sphinx-traceability-extension'
requires = ['Sphinx>=2.0']
setup(
name='sphinxcontrib-traceability',
version='0.2.0',
url=project_url,
download_url=project_url + '/archive/v0.2.0.tar.gz',
license='GNU General Public License v3 (GPLv3)',
author='Oscar Ciudad',
author_email='[email protected]',
description='Sphinx traceability extension',
long_description=open("README.rst").read(),
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Sphinx :: Extension',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Documentation',
'Topic :: Documentation :: Sphinx',
'Topic :: Utilities',
],
platforms='any',
packages=find_packages(exclude=['tests', 'example']),
include_package_data=True,
install_requires=requires,
namespace_packages=['sphinxcontrib'],
keywords = ['traceability',
'requirements engineering',
'requirements management',
'software engineering',
'systems engineering',
'sphinx',
'requirements'
]
)