forked from edelooff/sqla-graphs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 830 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 830 Bytes
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
import os
from setuptools import setup, find_packages
def contents(filename):
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, filename)) as fp:
return fp.read()
setup(
name='sqla-graphs',
version='0.2',
author='Elmer de Looff',
author_email='elmer.delooff@gmail.com',
description='Graphviz generators for SQLAlchemy models or databeses.',
long_description=contents('README.rst'),
url='https://github.com/edelooff/sqla-graphs',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Database :: Front-Ends'],
packages=find_packages(),
install_requires=[
'pydot>=1.2.2',
'sqlalchemy>=1.0'],
zip_safe=False,
)