This repository has been archived by the owner on Jan 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
47 lines (44 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
#!/usr/bin/env python
import codecs
from setuptools import setup
from sphinx_typlog_theme import __version__
with codecs.open('README.rst', encoding='utf-8') as f:
readme = f.read()
setup(
name='sphinx_typlog_theme',
version=__version__,
description='A typlog Sphinx theme',
long_description=readme,
author='Hsiaoming Yang',
author_email='[email protected]',
url='https://github.com/typlog/sphinx-typlog-theme',
packages=['sphinx_typlog_theme'],
include_package_data=True,
entry_points={
'sphinx.html_themes': [
'sphinx_typlog_theme = sphinx_typlog_theme',
]
},
extras_require={
'dev': ['sphinx', 'livereload'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Framework :: Sphinx',
'Framework :: Sphinx :: Theme',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'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 :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
],
)