Skip to content

Commit

Permalink
Merge pull request #73 from jxx123/dependencies
Browse files Browse the repository at this point in the history
Dependencies
  • Loading branch information
jxx123 authored Nov 14, 2023
2 parents 4a32d3d + aec7da8 commit 80abe07
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
from setuptools import setup


def parse_requirements(filename):
"""Load requirements from a pip requirements file."""
with open(filename) as f:
lineiter = (line.strip() for line in f)
return [line for line in lineiter if line and not line.startswith("#")]


reqs = parse_requirements("requirements.txt")

setup(
name="simglucose",
version="0.2.8",
version="0.2.9",
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="[email protected]",
license="MIT",
packages=["simglucose"],
install_requires=reqs,
install_requires=[
"gym==0.9.4",
"gymnasium~=0.29.1",
"pathos>=0.3.1",
"scipy>=1.11.0",
"matplotlib>=3.7.2",
"numpy>=1.25.0",
"pandas>=2.0.3",
],
include_package_data=True,
zip_safe=False,
long_description=open("README.md").read(),
Expand Down

0 comments on commit 80abe07

Please sign in to comment.