forked from sphinx-doc/sphinxcontrib-websupport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (57 loc) · 1.97 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
long_desc = '''
sphinxcontrib-webuspport 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',
'mock', # it would be better for 'test:python_version in 2.7'
],
}
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.python.org/pypi/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 :: 2',
'Programming Language :: Python :: 3',
'Framework :: Sphinx',
'Framework :: Sphinx :: Extension',
'Topic :: Documentation',
'Topic :: Documentation :: Sphinx',
'Topic :: Text Processing',
'Topic :: Utilities',
],
platforms='any',
packages=find_packages(exclude=['tests']),
include_package_data=True,
extras_require=extras_require,
namespace_packages=['sphinxcontrib'],
)