-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
34 lines (30 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
34
from os.path import join, dirname
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open(join(dirname(__file__), 'README.rst')) as f:
README = f.read()
setup(
name='SQLConstruct',
version='0.2.4',
description='Functional approach to query database using SQLAlchemy',
long_description=README,
author='Vladimir Magamedov',
author_email='[email protected]',
url='https://github.com/vmagamedov/sqlconstruct',
py_modules=['sqlconstruct'],
install_requires=['SQLAlchemy>=0.9'],
license='BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Database :: Front-Ends',
],
)