-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
34 lines (30 loc) · 1002 Bytes
/
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
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
description = f.read()
setup(
name = 'sphinx-navtree',
version = '0.3.0',
description = 'Navigation tree customization for Sphinx',
long_description = '\n' + description,
url = 'https://github.com/bintoro/sphinx-navtree',
author = 'Kalle Tuure',
author_email = '[email protected]',
license = 'MIT',
packages = ['sphinx_navtree'],
package_data = {
'sphinx_navtree': ['*.css'],
},
install_requires = [],
classifiers = [
'Framework :: Sphinx',
'Framework :: Sphinx :: Extension',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Documentation',
'Topic :: Documentation :: Sphinx',
'Topic :: Software Development :: Documentation',
]
)