-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (36 loc) · 1.11 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
import os
from setuptools import find_packages
from setuptools import setup
name = 'kotti_docs_theme'
version = '0.3dev'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
except IOError:
README = CHANGES = ''
setup(
name=name,
version=version,
description="Sphinx Theme for Kotti Documentation",
long_description='\n\n'.join([README, CHANGES]),
classifiers=[
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
],
keywords='sphinx theme kotti twitter bootstrap',
author='Andreas Kaiser',
author_email='disko@binary-punks.com',
url='https://github.com/Kotti/kotti_docs_theme',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
"Sphinx",
],
entry_points={},
)