-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (46 loc) · 1.62 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
VERSION = 2.0
version = os.path.join('butterfly', '__init__.py')
execfile(version)
README = open('README.md').read()
butterfly_package_data = [
os.path.join("static", filename)
for filename in os.listdir(os.path.join("butterfly", "static"))
if any([filename.endswith(ext) for ext in ".html", ".js"])] + [
os.path.join("static", "images", filename)
for filename in os.listdir(os.path.join("butterfly", "static", "images"))
if filename.endswith(".png")]
setup(
name='butterfly',
version=VERSION,
packages=find_packages(),
author='Daniel Haehn',
author_email='[email protected]',
url="https://github.com/Rhoana/butterfly",
description="butterfly",
long_description=README,
install_requires=[
"numpy>=1.9.3",
"h5py>=2.6.0",
"tornado>=4.3",
"scipy>=0.16.0",
"tifffile>=0.10.0",
"rh_logger>=2.0.0",
"rh_config>=1.0.0"
],
dependency_links=[
"https://github.com/Rhoana/pyrtree/archive/master.zip",
"https://github.com/Rhoana/rh_logger/tarball/master#egg=rh_logger-2.0.0",
"https://github.com/Rhoana/rh_config/tarball/master#egg=rh_config-1.0.0",
"https://github.com/Rhoana/dataspec/archive/1.1.1.tar.gz#egg=dataspec-1.1.1",
"https://github.com/Rhoana/rh_renderer/archive/master.zip#egg=rh_renderer-0.0.1"
],
entry_points=dict(console_scripts=[
'bfly = butterfly.cli:main',
'bfly_query = butterfly.cli:query',
]),
package_data=dict(butterfly=butterfly_package_data),
zip_safe=False
)