-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 703 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 703 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='winnow-filters',
packages=['winnow'],
version='0.0.5',
description='Winnow is a framework for server-side filtering of data.',
author='Brian Schiller',
author_email='bgschiller@gmail.com',
url='https://github.com/bgschiller/winnow',
download_url='https://github.com/bgschiller/winnow/archive/0.0.1.tar.gz',
keywords=['sql', 'jinja2', 'filters'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
],
install_requires=[
'jinjasql',
'python-dateutil',
'six',
],
)