forked from PacificBiosciences/pypeFLOW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 771 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
from setuptools import setup, Extension, find_packages
setup(
name = 'pypeflow',
version='0.1.1',
author='J. Chin',
author_email='[email protected]',
license='LICENSE.txt',
packages = [
'pypeflow',
'pwatcher', # a separate package for here for convenience, for now
'pwatcher.mains',
],
package_dir = {'':'.'},
zip_safe = False,
install_requires=[
'rdflib == 3.4.0',
'rdfextras >= 0.1',
'html5lib == 0.999999',
],
entry_points = {'console_scripts': [
'pwatcher-main=pwatcher.mains.pwatcher:main',
'pwatcher-pypeflow-example=pwatcher.mains.pypeflow_example:main',
'heartbeat-wrapper=pwatcher.mains.fs_heartbeat:main',
],
},
)