Skip to content

Commit

Permalink
Update setup, requirements, license
Browse files Browse the repository at this point in the history
  • Loading branch information
markkho committed Oct 21, 2021
1 parent 5309f95 commit 29ecc75
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 17 deletions.
9 changes: 9 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
The MIT License (MIT)

Copyright (c) 2021 Mark K. Ho

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ torch
tqdm
pandas
sparse
git+https://github.com/Marco-Sulla/python-frozendict@v2.0.1
termcolor
frozendict
termcolor
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[metadata]
long_description = file: README.md
long_description_content_type = text/markdown
52 changes: 37 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,40 @@ def readme():
with open('README.md') as f:
return f.read()

setup(name='msdm',
version='0.4',
description='Models of sequential decision making',
url='https://github.com/markkho/msdm',
author="Mark Ho",
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy', 'matplotlib', 'scipy', 'torch', 'tqdm', 'sparse', 'termcolor',
'frozendict @ git+https://github.com/Marco-Sulla/[email protected]'
],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)
setup(
name='msdm',
version='0.4',
description='Models of sequential decision making',
keywords = [
'reinforcement learning',
'planning',
'cognitive science'
],
url='https://github.com/markkho/msdm',
download_url = '',
author="Mark Ho",
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy',
'matplotlib',
'scipy',
'torch',
'tqdm',
'sparse',
'termcolor',
'frozendict'
],
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',
],
)

0 comments on commit 29ecc75

Please sign in to comment.