-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·36 lines (32 loc) · 911 Bytes
/
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
35
36
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from pip.req import parse_requirements
install_reqs = parse_requirements(
'requirements.txt',
session=False
)
reqs = [str(ir.req) for ir in install_reqs]
setup(
name='celery-pipeline',
version='0.15',
description="Runtime-configurable execution pipeline built on celery.",
author='Mike Waters',
author_email='robert.waters@gmail.com',
url='https://github.com/mikewaters/pipeline',
packages=[
'pipeline',
],
include_package_data=True,
install_requires=reqs,
license="BSD",
keywords='pipeline',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
],
)