-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (38 loc) · 1.26 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup
from setuptools import find_namespace_packages
documentation = ["*.md", "*.txt", "*.rst"]
with open("copain/VERSION.txt", "r") as f:
VERSION = f.read().rstrip()
setup(
name="copain",
version=VERSION,
packages=find_namespace_packages(include=["copain", "copain.*"]),
install_requires=["numpy", "pyvirtualdisplay <3", "skorch <1"],
include_package_data=True,
test_suite="copain",
url="https://github.com/fcharras/copain",
author="fcharras",
maintainer="fcharras",
description="Interface fceux with python and run reinforcement learning.",
classifiers=[
"Environment :: GPU :: NVIDIA CUDA",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Other Audience",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Other",
"Topic :: Artistic Software",
"Topic :: Games/Entertainment",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords=[
"fceux",
"IA",
"reinforcement learning",
"machine learning",
"deep learning",
"TAS",
],
)