-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
57 lines (52 loc) · 1.66 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
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
LONG_DESCRIPTION = \
'''
This package contains the tikz Sphinx extension, which enables the use
of the PGF/TikZ LaTeX package to draw nice pictures.
'''
NAME = 'sphinxcontrib-tikz'
DESCRIPTION = 'TikZ extension for Sphinx'
VERSION = '0.4.20'
AUTHOR = 'Christoph Reller'
AUTHOR_EMAIL = '[email protected]'
URL = 'https://bitbucket.org/philexander/tikz'
DOWNLOAD = 'http://pypi.python.org/pypi/sphinxcontrib-tikz'
LICENSE = 'BSD'
REQUIRES = ['Sphinx']
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Documentation',
'Topic :: Utilities',
]
if __name__ == "__main__":
from setuptools import setup, find_packages
import sys
setup(
name=NAME,
version=VERSION,
url=URL,
download_url=DOWNLOAD,
license=LICENSE,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
zip_safe=False,
classifiers=CLASSIFIERS,
platforms='any',
packages=find_packages(),
include_package_data=True,
install_requires=REQUIRES,
namespace_packages=['sphinxcontrib'],
)