Skip to content

Commit

Permalink
this branch is now installable from pip
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioJayakumar committed Apr 29, 2020
1 parent 310df7a commit 145322b
Show file tree
Hide file tree
Showing 15 changed files with 23 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ __pycache__/
*.swp
.DS_Store
.vscode/
saved_observations/
saved_observations/
build/
dist/
PettingZoo.egg-info
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
recursive-include pettingzoo *
global-exclude __pycache__
global-exclude *.pyc
1 change: 1 addition & 0 deletions PettingZoo.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from setuptools import find_packages, setup

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

setup(
name='PettingZoo',
version="0.1.0",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.5",
data_files=[("", ["LICENSE.txt"])],
packages=find_packages(),
include_package_data=True,
)

0 comments on commit 145322b

Please sign in to comment.