-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (27 loc) · 828 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
import subprocess
result = subprocess.run(["git", "describe", "--abbrev=0"], stdout=subprocess.PIPE)
VERSION = result.stdout.decode("utf-8").rstrip()
with open("README.md") as file:
long_description = file.read()
install_requires = [
"numpy>=1.14.3",
"scipy>=1.1.0",
"Pillow>=5.1.0",
"tqdm==4.28.1",
"numba==0.42.0",
]
setup(
name="gorl",
version=VERSION,
url="https://github.com/denistr16/GoL-RL/",
zip_safe=False,
packages=find_packages(),
include_package_data=True,
description="Playground for reinforcement learning with John Conway Game of Life",
long_description=long_description,
long_description_content_type="text/markdown",
author="GoL-RL team",
license="MIT",
install_requires=install_requires,
)