-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
36 lines (32 loc) · 1.15 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
#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup, find_packages
PACKAGES = find_packages(where=".")
KEYWORDS = ["jupyter", "ipython", "uml", "plantuml", "dictionary"]
INSTALL_REQUIRES = []
if __name__ == "__main__":
setup(name='dict2uml',
version='1.0',
description='Converts a Python dictionary to PlantUML',
author='Martin Isaksson',
author_email='martin@martisak.com',
url='https://github.com/martisak/dict2uml',
license='MIT',
keywords=KEYWORDS,
install_requires=INSTALL_REQUIRES,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
"Framework :: IPython",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Programming Language :: Python',
"Programming Language :: Python :: 2.7"
],
packages=PACKAGES,
entry_points={
'console_scripts': [
'dict2uml = dict2uml.__main__:main'
]
},
)