-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (53 loc) · 1.89 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
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
setup(
zip_safe=False,
install_requires=["sphinx>=1.1"],
name="themata",
version=1.14,
author="Adewale Azeez",
author_email="[email protected]",
description="Set of Highly customizable sphinx themes. hackish, milkish, fandango, clear, fluid, garri, water and sugar.",
long_description=long_description,
license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
packages=[
"themata",
"themata.hackish",
"themata.milkish",
"themata.fandango",
"themata.clear",
"themata.fluid",
"themata.garri",
"themata.water",
"themata.sugar"
],
include_package_data=True,
keywords="sphinx, extension, theme, thecarisma, hackish, milkish, fandango, clear, fluid, garri, water, sugar",
url="https://github.com/Thecarisma/themata/",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Common Public License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
],
entry_points = {
'sphinx.html_themes': [
'themata = themata',
'hackish = themata.hackish',
'milkish = themata.milkish',
'fandango = themata.fandango',
'clear = themata.clear',
'fluid = themata.fluid',
'garri = themata.garri',
'water = themata.water',
'sugar = themata.sugar',
]
},
)