forked from SamuelMarks/python-plantuml
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (27 loc) · 945 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
from setuptools import setup
from plantuml import __author__, __version_string__, __email__
setup(
name='plantuml',
version=__version_string__,
description='',
long_description=open('README.md', 'r').read(),
url='https://github.com/dougn/python-plantuml/',
author=__author__,
author_email=__email__,
license='BSD',
py_modules=['plantuml'],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['httplib2'],
keywords=['plantuml', 'uml']
)