-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 706 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 706 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
from setuptools import setup
setup(
name='crosstab',
version='0.1',
description='New grammar for SQLAlchemy to make handling the crosstab() tablefunc (i.e. pivot tables) in Postgresql easy peasy',
long_description='',
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'License :: OSI Approved :: BSD License',
],
keywords='',
author='Mehmet Ali "Mali" Akmanalp',
author_email='',
url='https://github.com/makmanalp/sqlalchemy-crosstab-postgresql',
license='BSD license',
py_modules=['crosstab'],
zip_safe=False,
install_requires=[
'sqlalchemy',
'pytest',
'psycopg2'
],
)