Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverSchw committed Sep 6, 2023
1 parent 71238eb commit 7c6f64c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import setuptools


AUTHORS = [
'Oliver Schweins'
]

with open('requirements.txt', 'r') as f:
requirements = f.read().splitlines()

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name='exciting_environments',
version='1.0.0',
description='A Collection of OpenAI gymnasium environments.',
packages=setuptools.find_packages(),
install_requires=requirements,
python_requires='>=3.6',
author=', '.join(sorted(AUTHORS, key=lambda n: n.split()[-1].lower())),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ExcitingSystems/exciting-environments",
)

0 comments on commit 7c6f64c

Please sign in to comment.