forked from alafin/sqlconstruct
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
22 lines (18 loc) · 547 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (18 loc) · 547 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
fromos.pathimportjoin, dirname
try:
fromsetuptoolsimportsetup
exceptImportError:
fromdistutils.coreimportsetup
withopen(join(dirname(__file__), 'README.rst')) asf:
README=f.read()
setup(
name='SQLConstruct',
version='0.2',
description='Functional approach to query database using SQLAlchemy',
long_description=README,
author='Vladimir Magamedov',
author_email='vladimir@magamedov.com',
url='http://github.com/vmagamedov/sqlconstruct',
license='BSD',
py_modules=['sqlconstruct'],
)