forked from mwshinn/PyDDM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 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
# Copyright 2018 Max Shinn <[email protected]>
# 2018 Norman Lam <[email protected]>
#
# This file is part of PyDDM, and is available under the MIT license.
# Please see LICENSE.txt in the root directory for more information.
from setuptools import setup
with open("ddm/_version.py", "r") as f:
exec(f.read())
with open("README.md", "r") as f:
long_desc = f.read()
setup(
name = 'pyddm',
version = __version__,
description = 'Extensible drift diffusion modeling for Python',
long_description = long_desc,
long_description_content_type='text/markdown',
author = 'Max Shinn, Norman Lam',
author_email = '[email protected]',
maintainer = 'Max Shinn',
maintainer_email = '[email protected]',
license = 'MIT',
python_requires='>=3.5',
url='https://github.com/mwshinn/PyDDM',
packages = ['ddm', 'ddm.models'],
install_requires = ['numpy >= 1.9.2', 'scipy >= 0.16', 'matplotlib', 'paranoid-scientist >= 0.2.1'],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Education :: Testing',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Scientific/Engineering :: Bio-Informatics']
)