forked from ynnk/cello
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (26 loc) · 878 Bytes
/
setup.py
File metadata and controls
34 lines (26 loc) · 878 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
#TODO; better setup
# see https://bitbucket.org/mchaput/whoosh/src/999cd5fb0d110ca955fab8377d358e98ba426527/setup.py?at=default
version="1.1.2"
# changes
# 1.1.2 deprecation np.sum
# 1.1.1 bug with NaN in pedigree
# 1.1.0 change weighting function signature in prox_markov_dict
# 1.0.8 fix pedgigree rho
# 1.0.7 fix mode on proxextract
# 1.0.6 pedigree computations
# 1.0.3 weighted loops ; sortcut > 0
# Read requirements from txt file
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='cello',
version=version,
description='Cello',
author='enavarro, ynnk',
author_email='contact@padagraph.io',
url='http://www.padagraph.io',
packages=['cello'] + ['cello.%s' % submod for submod in find_packages('cello')],
install_requires=required,
)