forked from baloo/sphinx-ditaa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (37 loc) · 1.13 KB
/
setup.py
File metadata and controls
44 lines (37 loc) · 1.13 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
PACKAGES = find_packages()
INSTALL_REQUIRES = [
'setuptools',
'Sphinx >=1.0.7',
]
KEYWORDS = ['sphinx', 'ditaa', 'reST']
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Programming Language :: Python 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Documentation',
'Topic :: Documentation',
'Topic :: System :: Installation/Setup',
'License :: OSI Approved :: BSD License',
]
PLATEFORMS = 'any'
LICENSE = 'BSD'
VERSION = '1.0'
setup(
name='sphinxcontrib-ditaa',
author='Arthur Gautier',
url='https://github.com/baloo/sphinx-ditaa',
description='Sphinx contribution plugin for rendering Ditaa diagrams',
namespace_packages=['sphinxcontrib'],
version=VERSION,
license=LICENSE,
platforms=PLATEFORMS,
packages=PACKAGES,
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
python_requires='>=3.5',
)