-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
48 lines (43 loc) · 1.28 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
# -*- coding: utf-8 -*-
"""`sphinx_3dr_theme` lives on `Github`_.
.. _github: https://www.github.com/3drobotics/sphinx_3dr_theme
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
from sphinx_3dr_theme import __version__
here = path.abspath(path.dirname(__file__))
setup(
name='sphinx-3dr-theme',
version=__version__,
url='https://github.com/3drobotics/sphinx_3dr_theme/',
license='MIT',
author='3D Robotics',
author_email='[email protected]',
description='3D Robotics official Sphinx theme.',
long_description=open('README.md').read(),
zip_safe=False,
packages=['sphinx_3dr_theme'],
package_data={'sphinx_3dr_theme': [
'*.*',
'theme.conf',
'static/css/*.*',
'static/fonts/*.*',
'static/fonts/bootstrap/*.*',
'static/images/*.*',
'static/js/*.*',
]},
install_requires=['sphinx >= 1.1'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
],
)