]> SALOME platform Git repositories - tools/sat.git/blob - doc/_themes/alabaster/setup.py
Salome HOME
ajout commande generate, complétion launcher.rst
[tools/sat.git] / doc / _themes / alabaster / setup.py
1 #!/usr/bin/env python
2
3 import codecs
4 from setuptools import setup
5
6 # Version info -- read without importing
7 _locals = {}
8 with open('alabaster/_version.py') as fp:
9     exec(fp.read(), None, _locals)
10 version = _locals['__version__']
11
12 # README into long description
13 with codecs.open('README.rst', encoding='utf-8') as f:
14     readme = f.read()
15
16 setup(
17     name='alabaster',
18     version=version,
19     description='A configurable sidebar-enabled Sphinx theme',
20     long_description=readme,
21     author='Jeff Forcier',
22     author_email='jeff@bitprophet.org',
23     url='https://alabaster.readthedocs.io',
24     packages=['alabaster'],
25     include_package_data=True,
26     entry_points={
27         'sphinx.html_themes': [
28             'alabaster = alabaster',
29         ]
30     },
31     classifiers=[
32         'Development Status :: 5 - Production/Stable',
33         'Intended Audience :: Developers',
34         'License :: OSI Approved :: BSD License',
35         'Operating System :: OS Independent',
36         'Programming Language :: Python',
37         'Programming Language :: Python :: 2',
38         'Programming Language :: Python :: 2.6',
39         'Programming Language :: Python :: 2.7',
40         'Programming Language :: Python :: 3',
41         'Programming Language :: Python :: 3.2',
42         'Programming Language :: Python :: 3.3',
43         'Programming Language :: Python :: 3.4',
44         'Programming Language :: Python :: 3.5',
45         'Programming Language :: Python :: 3.6',
46         'Programming Language :: Python :: Implementation :: CPython',
47         'Programming Language :: Python :: Implementation :: PyPy',
48         'Topic :: Documentation',
49         'Topic :: Software Development :: Documentation',
50     ],
51 )