Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony0727 authored Nov 14, 2022
1 parent 5304eec commit 69b940d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
from setuptools import setup, find_packages
import io

with open("README.md") as f:
with io.open("README.md", encoding="utf-8") as f:
long_description = f.read()

setup(
name='marlenv',
version='1.0.0',
url='https://github.com/kc-ml2/marlenv',
author='Tae Min Ha, Daniel Nam, Won Seok Jung',
author_email='contact@kc-ml2.com',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
'gym==0.24.1',
],
python_requires='>=3.8',
long_description_content_type="text/markdown",

)

0 comments on commit 69b940d

Please sign in to comment.