-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (19 loc) · 777 Bytes
/
setup.py
File metadata and controls
19 lines (19 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(name='pypeline',
use_scm_version={
"write_to": "pypeline/_version.py",
"write_to_template": '__version__ = "{version}"',
"tag_regex": r"^(?P<prefix>v)?(?P<version>[^\+]+)(?P<suffix>.*)?$",
},
description='Dask-powered Inspectable Function Pipelines',
url='https://github.com/makepath/pypeline',
packages=['pypeline',
'pypeline.tests'],
install_requires=['dask',
'pytest',
'tbb'],
zip_safe=False,
classifiers=["Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"],
include_package_data=True)