forked from pypa/pypa-docs-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 977 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
31
32
33
34
35
36
#!/usr/bin/env python
import io
from setuptools import setup
# README into long description
with io.open('README.rst', encoding='utf-8') as readme_file:
long_description = readme_file.read()
setup(
name='pypa-docs-theme',
version='0.0.1',
description='The Sphinx theme for PyPA projects',
long_description=long_description,
author='PyPA',
author_email='distutils-sig@python.org',
url='https://pypa.io',
packages=['pypa_theme'],
include_package_data=True,
entry_points={
'sphinx.html_themes': [
'pypa_theme = pypa_theme',
]
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: OS Independent',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)