-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (31 loc) · 1 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
from setuptools import setup
setup(
name = 'sphinx_susiai_theme',
version = '0.0.1',
author = 'Balaji R',
author_email = '[email protected]',
url = 'https://github.com/fossasia/sphinx_susiai_theme',
license = 'GNU',
description = 'A Sphinx theme specific to SUSI AI\'s Projects',
packages = ['sphinx_susiai_theme'],
include_package_data = True,
entry_points = {
'sphinx.html_themes': [
'sphinx_susiai_theme = sphinx_susiai_theme'
],
'sphinx_themes': [
'path = sphinx_susiai_theme:get_html_theme_path'
],
},
install_requires = ['sphinx>=1.3'],
platforms = 'any',
classifiers = [
"Framework :: Sphinx :: Extension",
"Framework :: Sphinx :: Theme",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Documentation",
],
long_description = open('README.rst').read(),
)