-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 963 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
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
version = '0.2'
setup(name='ztools',
version=version,
description="Utilities for running and benchmarking Zonation",
long_description="""\
""",
classifiers=[],
keywords='zonation test cbig',
author='Joona Lehtom\xc3\xa4ki',
author_email='[email protected]',
url='',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
"pyyaml",
"slackpy>=0.1.4"
],
dependency_links = ['https://github.com/jlehtoma/slackpy/tarball/master#egg=slackpy-0.1.4'],
entry_points={'console_scripts': [
'zrunner = ztools.runner:main',
'zreader = ztools.reader:main'
]
},
)