-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (31 loc) · 991 Bytes
/
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
from distutils.core import setup
from setuptools import setup, find_packages
long_desc = '''
This package enable embedding yuml diagrams on your Sphinx documentation.
Example::
.. yuml::
:alt: [Customer]->[Billing Address]
:type: class
[Customer]->[Billing Address]
'''
setup(
name='sphinxcontrib-yuml',
version='0.3.1',
url='https://github.com/njouanin/sphinxcontrib-yuml',
packages=find_packages(),
license='GPLv3',
description='Sphinx extension for embedding yuml diagram in documentations',
long_description=long_desc,
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',
'Topic :: Documentation',
'Topic :: Utilities',
],
platforms='any',
)