forked from prometheusresearch/sphinxcontrib-texfigure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (44 loc) · 1.39 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
48
49
50
#
# Copyright (c) 2013, Prometheus Research, LLC
#
from setuptools import setup
NAME = "sphinxcontrib-texfigure"
VERSION = "0.1.3"
DESCRIPTION = "TeX Figure extension for Sphinx"
LONG_DESCRIPTION = open('README').read()
AUTHOR = "Kirill Simonov (Prometheus Research, LLC)"
AUTHOR_EMAIL = "[email protected]"
LICENSE = "BSD"
URL = "https://github.com/prometheusresearch/sphinxcontrib-texfigure"
DOWNLOAD_URL = "http://pypi.python.org/pypi/sphinxcontrib-texfigure"
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Documentation',
'Topic :: Text Processing',
]
PLATFORMS = 'any'
INSTALL_REQUIRES = ['Sphinx']
PACKAGES = ['sphinxcontrib']
ZIP_SAFE = False
INCLUDE_PACKAGE_DATA = True
NAMESPACE_PACKAGES = ['sphinxcontrib']
setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
url=URL,
download_url=DOWNLOAD_URL,
classifiers=CLASSIFIERS,
platforms=PLATFORMS,
install_requires=INSTALL_REQUIRES,
packages=PACKAGES,
zip_safe=ZIP_SAFE,
include_package_data=INCLUDE_PACKAGE_DATA,
namespace_packages=NAMESPACE_PACKAGES)