forked from sphinx-contrib/doxylink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (33 loc) · 1.24 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from sphinxcontrib.doxylink import __version__
with open('README.rst') as stream:
long_desc = stream.read()
requires = ['Sphinx>=0.6', 'pyparsing']
setup(
name='sphinxcontrib-doxylink',
version=__version__,
url='http://sphinxcontrib-doxylink.readthedocs.io/en/stable/',
download_url='http://pypi.python.org/pypi/sphinxcontrib-doxylink',
license='BSD',
author='Matt Williams',
author_email='[email protected]',
description='Sphinx extension for linking to Doxygen documentation.',
long_description=long_desc,
keywords=['sphinx', 'doxygen', 'documentation', 'c++'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Documentation',
'Topic :: Utilities',
],
packages=find_packages(exclude=['doc', 'examples', 'html', 'tests']),
install_requires=requires,
python_requires='~=3.4',
namespace_packages=['sphinxcontrib'],
)