-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 1.24 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
from setuptools import setup
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='sqlalchemy-multidb',
version='1.0.2',
packages=['sqlalchemy_multidb'],
url='https://github.com/viniciuschiele/sqlalchemy-multidb',
license='MIT',
author='Vinicius Chiele',
author_email='[email protected]',
description='Provides methods to load the database configurations from a config object and access multiple databases easily.',
long_description=long_description,
keywords=['sqlalchemy'],
install_requires=['sqlalchemy>=1.0.0'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)