forked from aviallon/dbml2dot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 1.06 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
from textwrap import dedent
from setuptools import setup
import dbml2dot
setup(
name='dbml2dot',
version=dbml2dot.__version__,
description=dedent('''
Converts DBML files to their graphviz representation in .dot format.
It can also optionally do the additional conversion to an image format using graphviz.'''),
url=dbml2dot.__url__,
author=dbml2dot.__author__,
author_email='[email protected]',
license='GPL 3.0',
packages=['dbml2dot'],
install_requires=['pydbml~=0.3.4',
'pydot~=1.4.2',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)