-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·49 lines (48 loc) · 1.51 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
from setuptools import setup
from io import open
from catalyst_sphinx_theme import __version__
setup(
name = 'catalyst_sphinx_theme',
version =__version__,
author = 'Artem Zolkin',
author_email= '[email protected]',
url="https://github.com/catalyst-team/catalyst_sphinx_theme",
docs_url="https://github.com/catalyst-team/catalyst_sphinx_theme",
description='Catalyst Sphinx Theme',
py_modules = ['catalyst_sphinx_theme'],
packages = ['catalyst_sphinx_theme'],
include_package_data=True,
zip_safe=False,
package_data={'catalyst_sphinx_theme': [
'theme.conf',
'*.html',
'static/css/*.css',
'static/js/*.js',
'static/js/**/*.js',
'static/fonts/**/*.*',
'static/images/*.*',
'theme_variables.jinja'
]},
entry_points = {
'sphinx.html_themes': [
'catalyst_sphinx_theme = catalyst_sphinx_theme',
]
},
license= 'MIT License',
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Documentation"
],
install_requires=[
'sphinx'
],
python_requires='>=3.6',
)