forked from glpi-project/sphinx_glpi_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.26 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
# -*- coding: utf-8 -*-
"""`sphinx_glpi_theme` lives on `Github`_.
.. _github: https://www.github.com/glpi-project/sphinx_glpi_theme
"""
from setuptools import setup, find_packages
from sphinx_glpi_theme import __version__
setup(
name='sphinx_glpi_theme',
version=__version__,
url='https://github.com/glpi-project/sphinx_glpi_theme/',
license='MIT',
author='Johan Cwiklinski',
author_email='[email protected]',
description='GLPI theme for Sphinx',
long_description=open('README.rst').read(),
zip_safe=False,
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
],
)