forked from jxx123/simglucose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 654 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (18 loc) · 654 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(
name='simglucose',
version='0.2.2',
description=
'A Type-1 Diabetes Simulator as a Reinforcement Learning Environment in OpenAI gym or rllab (python implementation of UVa/Padova Simulator)',
url='https://github.com/jxx123/simglucose',
author='Jinyu Xie',
author_email='xjygr08@gmail.com',
license='MIT',
packages=['simglucose'],
install_requires=[
'pandas', 'numpy', 'scipy', 'matplotlib', 'pathos', 'gym==0.9.4'
],
include_package_data=True,
zip_safe=False,
long_description=open('README.md').read(),
long_description_content_type="text/markdown")