forked from useblocks/sphinx-needs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.73 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
requires = ['Sphinx<2;python_version<"3.5"',
'Sphinx<3;python_version<"3.6"', # Needed as matplotlib can not deal with py35 and sphinx3
'Sphinx;python_version>="3.6"',
'six',
'matplotlib<=3.0.3.;python_version<"3.6"', # last version with py3.5 support
'matplotlib;python_version>="3.6"',
'MarkupSafe<1.3.0.;python_version<"3.6"']
setup(
name='sphinxcontrib-needs',
# If you raise, think about versions in conf.py and needs.py!!!
version='0.5.6',
url='http://github.com/useblocks/sphinxcontrib-needs',
download_url='http://pypi.python.org/pypi/sphinxcontrib-needs',
license='MIT',
author='team useblocks',
author_email='[email protected]',
description='Sphinx needs extension for managing needs/requirements and specifications',
long_description=open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Documentation',
'Topic :: Utilities',
],
platforms='any',
packages=find_packages(),
include_package_data=True,
install_requires=requires,
namespace_packages=['sphinxcontrib'],
)