-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 852 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
from distutils.core import setup
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup(
name = 'pyPiper',
packages = ['pyPiper'],
version = '0.5.2',
description = 'A pipelining framework designed for data analysis but can be useful to other applications',
author = 'daniyall',
author_email = '[email protected]',
url = 'https://github.com/daniyall/pyPiper',
download_url = 'https://github.com/daniyall/pyPiper/archive/0.5.1.tar.gz',
keywords = ['data-science', 'pipelining', 'stream-processing', "data-analysis"],
classifiers = [],
python_requires=">=3",
license="LICENSE",
long_description=read_md('README.md')
)