-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 780 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 780 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
26
27
28
29
30
31
32
33
34
35
"""
Flask-Data-Pipes
----------------
Simple, performant data pipelines
"""
from setuptools import setup, find_packages
setup(
name='Flask-Data-Pipes',
version='1.0.6a',
url='https://github.com/Nasdaq/flask-data-pipes',
license='APACHE-2.0',
author='Jonathon Scarbeau',
author_email='jonathon.scarbeau@nasdaq.com',
description='Simple, performant data pipelines',
long_description=__doc__,
packages=find_packages(exclude=['examples', ]),
zip_safe=False,
include_package_data=True,
platforms='any',
python_requires='>=3.6',
install_requires=[
'Flask',
'Flask-SQLAlchemy',
'blinker',
'celery',
'marshmallow',
'inflection',
'requests'
],
classifiers=[
]
)