-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
64 lines (60 loc) · 2.15 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
# -*- coding: utf-8 -*-
"""`sphinx_adc_theme` lives on `Github`_.
.. _github: https://github.com/mga-sphinx/sphinx_adc_theme
"""
from setuptools import setup
setup(
name='sphinx_adc_theme',
url='https://github.com/mga-sphinx/sphinx_adc_theme',
license='BSD',
author='Christophe CHAUVET',
author_email='christophe.chauvet@gmail.com',
description='Apple Developer Connection theme for Sphinx, 2015 version.',
long_description=open('README.rst').read(),
zip_safe=False,
keywords='sphinx theme',
packages=['sphinx_adc_theme'],
package_data={
'sphinx_adc_theme': [
'theme.conf',
'*.html',
'static/css/*.css',
'static/js/*.js',
'static/img/*.*'
]
},
include_package_data=True,
install_requires=["docutils>=0.14", "Sphinx"],
use_scm_version=True,
setup_requires=['setuptools_scm'],
project_urls={
"Bug Tracker": "https://github.com/mga-sphinx/sphinx_adc_theme/issues",
"Documentation": "https://github.com/mga-sphinx/sphinx_adc_theme/blob/master/README.rst",
"Source Code": "https://github.com/mga-sphinx/sphinx_adc_theme",
"Demo": "http://mga-sphinx.github.io/sphinx_adc_theme/",
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Sphinx',
'Framework :: Sphinx :: Theme',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
],
entry_points = {
'sphinx.html_themes': [
'sphinx_adc_theme = sphinx_adc_theme',
]
},
)