Skip to content

Commit

Permalink
#4 Setup dependences
Browse files Browse the repository at this point in the history
  • Loading branch information
DavAug committed Feb 5, 2021
1 parent 7e246b1 commit c0ea286
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
from setuptools import setup, find_packages

# Go!
setup(
# Module name
name='pintsfunctest',
version='0.0.1dev0',

# License name
license='BSD 3-clause license',

# Maintainer information
maintainer='David Augustin',
maintainer_email='[email protected]',

# Packages and data to include
packages=find_packages(include=('pintsfunctest', 'pintsfunctest.*')),

# List of dependencies
install_requires=[
'bayesian_changepoint_detection',
'matplotlib',
'numpy',
'pints',
],
)

0 comments on commit c0ea286

Please sign in to comment.