forked from sphinx-doc/sphinxcontrib-websupport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
79 lines (71 loc) · 2.31 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
long_desc = '''
sphinxcontrib-websupport provides a Python API to easily integrate Sphinx
documentation into your Web application.
'''
extras_require = {
# Environment Marker works for wheel 0.24 or later
'test': [
'pytest',
'sqlalchemy',
'whoosh',
'Sphinx',
],
'lint': [
'flake8',
],
}
def get_version():
"""Get version number of the package from version.py without importing core module."""
package_dir = os.path.abspath(os.path.dirname(__file__))
version_file = os.path.join(package_dir, 'sphinxcontrib/websupport/version.py')
namespace = {}
with open(version_file, 'rt') as f:
exec(f.read(), namespace)
return namespace['__version__']
setup(
name='sphinxcontrib-websupport',
version=get_version(),
url='http://sphinx-doc.org/',
download_url='https://pypi.org/project/sphinxcontrib-websupport/',
license='BSD',
author='Georg Brandl',
author_email='[email protected]',
description='Sphinx API for Web Apps',
long_description=long_desc,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD 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',
'Framework :: Sphinx',
'Framework :: Sphinx :: Extension',
'Topic :: Documentation',
'Topic :: Documentation :: Sphinx',
'Topic :: Text Processing',
'Topic :: Utilities',
],
platforms='any',
python_requires=">=3.5",
packages=find_packages(exclude=['tests']),
include_package_data=True,
extras_require=extras_require,
entry_points={
'sphinx.builders': [
'websupport = sphinxcontrib.websupport.builder:WebSupportBuilder',
],
},
namespace_packages=['sphinxcontrib'],
)