forked from MaksymPetyak/emupints
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (48 loc) · 1.44 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
#
# emupints setuptools script
#
from setuptools import setup, find_packages
# Load text for description and license
with open('README.md') as f:
readme = f.read()
# Go!
setup(
# Module name (lowercase)
name='emupints',
# Remember to keep this in sync with pints/__init__.py
version='0.0.1',
description='Emulators for pints',
long_description=readme,
license='BSD 3-clause license',
# author='',
# author_email='',
maintainer='Maksym Petyak',
maintainer_email='[email protected]',
url='https://github.com/MaksymPetyak/emupints',
# Packages to include
packages=find_packages(include=('emupints')),
# List of dependencies
install_requires=[
'cma>=2',
'numpy>=1.8',
'scipy>=0.14',
# Note: Matplotlib is loaded for debug plots, but to ensure pints runs
# on systems without an attached display, it should never be imported
# outside of plot() methods.
# Should not be imported
'matplotlib>=1.5, <3',
'pints>=0.0.1',
'gpy>=1.0',
'tensorflow>=1.2, <1.11'
],
extras_require={
'docs': [
'guzzle-sphinx-theme', # Nice theme for docs
'sphinx>=1.5, !=1.7.3', # For doc generation
],
'dev': [
'flake8>=3', # For code style checking
'jupyter', # For documentation and testing
],
},
)