-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from HIIT/dev
Dev
- Loading branch information
Showing
11 changed files
with
105 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,6 @@ | |
|
||
__author__ = 'ELFI authors' | ||
__email__ = '[email protected]' | ||
__version__ = '0.3' | ||
|
||
# make sure __version_ is on the last non-empty line (read by setup.py) | ||
__version__ = '0.3.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,53 @@ | ||
import os | ||
from setuptools import setup | ||
from setuptools import setup, find_packages | ||
from io import open | ||
|
||
with open('README.md', 'r', encoding='utf-8') as f: | ||
|
||
with open('docs/readme.rst', 'r', encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
packages = ['elfi'] + ['elfi.' + p for p in find_packages('elfi')] | ||
|
||
requirements = [ | ||
'toolz>=0.8', | ||
'distributed==1.14.3', | ||
'graphviz>=0.5', | ||
'cairocffi>=0.7', | ||
'dask>=0.11.1', | ||
'sobol_seq>=0.1.2', | ||
'numpy>=1.8', | ||
'scipy>=0.16.1', | ||
'Cython>=0.25.1', | ||
'matplotlib>=1.1', | ||
'GPy>=1.0.9', | ||
'unqlite>=0.6.0' | ||
'GPy>=1.0.9' | ||
] | ||
|
||
optionals = { | ||
'doc': ['Sphinx'], | ||
'nosql': ['unqlite>=0.6.0'], | ||
'graphviz': ['graphviz>=0.5'] | ||
} | ||
|
||
# read version number | ||
__version__ = open('elfi/__init__.py').readlines()[-1].split(' ')[-1].strip().strip("'\"") | ||
|
||
setup( | ||
name='elfi', | ||
keywords='abc likelihood-free statistics', | ||
packages=['elfi'], | ||
version='0.3', | ||
packages=packages, | ||
version=__version__, | ||
author='HIIT', | ||
author_email='[email protected]', | ||
url='http://elfi.readthedocs.io', | ||
|
||
install_requires=requirements, | ||
|
||
extras_require={ | ||
'doc': ['Sphinx'], | ||
}, | ||
extras_require=optionals, | ||
|
||
description='Modular ABC inference framework for python', | ||
long_description=long_description, | ||
|
||
license='BSD3', | ||
license='BSD', | ||
|
||
classifiers=['Programming Language :: Python :: 3.5', | ||
'Topic :: Scientific/Engineering', | ||
'Topic :: Scientific/Engineering :: Bio-Informatics', | ||
'Operating System :: OS Independent', | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: BSD3 License']) | ||
'License :: OSI Approved :: BSD License'], | ||
zip_safe = False) |