-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (25 loc) · 891 Bytes
/
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
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
long_description = f.read().strip()
setup(
name='enthought_sphinx_theme',
version='0.7.3',
author='Enthought, Inc.',
author_email='[email protected]',
description='Sphinx theme for Enthought products',
long_description=long_description,
long_description_content_type="text/x-rst",
url='https://github.com/enthought/enthought-sphinx-theme',
packages=find_packages(),
include_package_data=True,
license = "BSD",
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
],
)