forked from fschulze/sqlalchemy_schemadisplay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 1.01 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 setuptools import setup
import os
version = '1.4.dev0'
long_description = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name='sqlalchemy_schemadisplay',
version=version,
description="Turn SQLAlchemy DB Model into a graph",
author="Florian Schulze",
author_email="[email protected]",
license="MIT License",
long_description=long_description[long_description.find('\n\n'):],
url='https://github.com/fschulze/sqlalchemy_schemadisplay',
py_modules=['sqlalchemy_schemadisplay'],
zip_safe=True,
install_requires=[
'setuptools',
'sqlalchemy',
'pydot',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Database :: Front-Ends",
"Operating System :: OS Independent"],
)