10 lines
244 B
Python
10 lines
244 B
Python
from setuptools import setup
|
|
from setuptools import find_packages
|
|
|
|
setup(name='gym_tic_tac_toe',
|
|
version='0.0.1',
|
|
install_requires=['gym'],
|
|
url="https://github.com/nczempin/gym-tic-tac-toe",
|
|
packages=find_packages()
|
|
)
|