Skip to content

Commit

Permalink
=Added setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
simondlevy committed May 12, 2020
1 parent caeb926 commit 0b51a11
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions gym-mygame/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
'''
Python distutils setup file for gym-mygame module.
Copyright (C) 2020 Simon D. Levy
MIT License
'''

#from distutils.core import setup
from setuptools import setup

setup (name = 'gym_mygame',
version = '0.1',
install_requires = ['gym', 'numpy'],
description = 'Gym environment for my CSCI 316 game',
packages = ['gym_mygame', 'gym_mygame.envs'],
author='Simon D. Levy',
author_email='[email protected]',
url='https://github.com/simondlevy/studenta21/gym-mygame',
license='MIT',
platforms='Linux; Windows; OS X'
)

0 comments on commit 0b51a11

Please sign in to comment.