-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
35 lines (31 loc) · 994 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
29
30
31
32
33
34
35
# -*- encoding: utf8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
description = f.read()
setup(
name='lymph-sqlalchemy',
version='0.8.0-dev',
url='http://github.com/deliveryhero/lymph-sqlalchemy/',
packages=find_packages(),
namespace_packages=['lymph'],
author=u'© Delivery Hero Holding GmbH',
license=u'Apache License (2.0)',
maintainer=u'Dushyant Rijhwani',
maintainer_email=u'[email protected]',
long_description=description,
include_package_data=True,
install_requires=[
'lymph>=0.1.0',
'SQLAlchemy>=1.0.9',
'psycopg2>=2.6.1',
'SQLAlchemy-Utils>=0.31.4',
'alembic>=0.8.2',
],
entry_points={
'lymph.cli': [
'init-db = lymph.sqlalchemy.cli.init_db:InitDB',
'sql-shell = lymph.sqlalchemy.cli.shell:SqlShell',
'sql-migrations = lymph.sqlalchemy.cli.migrate:MigrationCommand',
],
}
)