-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
48 lines (43 loc) · 1.22 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
from setuptools import setup
import sponge_docs_theme
setup(
name='sponge-docs-theme',
version=sponge_docs_theme.__version__,
description='Theme for Sponge documentation',
url='https://github.com/SpongePowered/sponge-docs-theme',
author='SpongePowered',
license='MIT',
packages=['sponge_docs_theme'],
install_requires=['sphinx_rtd_theme==1.0.0'],
message_extractors={
'src/theme/js': [
('**.js', 'javascript', None),
]
},
zip_safe=False,
package_data={'sponge_docs_theme': [
'*.json',
'favicon.ico',
'theme.pot',
'templates/*.html',
'static/*',
'static/*/*',
'extra/*'
]},
scripts=[
'dist/scripts/build-language',
'dist/scripts/language-code',
'dist/scripts/list-translations',
'dist/scripts/list-versions',
'dist/scripts/pr-comment',
'dist/scripts/pr-deploy',
'dist/scripts/travis-prepare'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Framework :: Sphinx',
'Framework :: Sphinx :: Extension',
]
)