Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m-wojnar committed Jul 23, 2023
1 parent 4cc10ce commit a577c0d
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
from setuptools import setup, find_packages


def read_requirements(filename: str) -> list[str]:
with open(filename) as file:
return file.read().splitlines()


def read_file(filename: str) -> str:
with open(filename) as file:
with open(filename, 'r') as file:
return file.read()


def read_requirements(filename: str) -> list[str]:
return read_file(filename).splitlines()


setup(
name='reinforced-lib',
version='0.2.0',
version='1.0.0',
packages=find_packages(include=[
'reinforced_lib',
'reinforced_lib.*'
Expand All @@ -24,7 +23,7 @@ def read_file(filename: str) -> str:
long_description_content_type='text/markdown',
author='Maksymilian Wojnar and Wojciech Ciężobka',
url='https://github.com/m-wojnar/reinforced-lib',
download_url='https://github.com/m-wojnar/reinforced-lib/archive/refs/tags/v0.2.0.tar.gz',
download_url='https://github.com/m-wojnar/reinforced-lib/archive/refs/tags/v1.0.0.tar.gz',
keywords='deep-reinforcement-learning, jax, library, machine-learning, reinforcement-learning',
python_requires='>=3.9, <4',
install_requires=read_requirements('requirements/requirements.txt'),
Expand Down

0 comments on commit a577c0d

Please sign in to comment.