-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
45 lines (43 loc) · 1.14 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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name='msdm',
version='0.11',
description='Models of sequential decision making',
keywords = [
'reinforcement learning',
'planning',
'cognitive science'
],
url='https://github.com/markkho/msdm',
download_url = 'https://github.com/markkho/msdm/archive/refs/tags/v0.11.tar.gz',
author="Mark Ho",
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=[
'matplotlib',
'numpy',
'scipy',
'torch',
'tqdm',
'pandas',
'frozendict',
'termcolor',
'julia',
'cvxpy',
],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)