-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
37 lines (33 loc) · 950 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
32
33
34
35
36
37
#!/usr/bin/env python3
__author__ = "Yxzh"
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = "DRL_Snakey",
version = "1.2",
description = "A Deep Reinforcement Learning study package. With game environment.",
long_description = long_description,
long_description_content_type = "text/markdown",
license = "GPL",
include_package_data = True,
install_requires = [
"numpy",
"tensorflow",
"h5py",
"pygame",
"matplotlib"
],
author = "YANG Xuezhi",
author_email = "cstrikest@gmail.com",
url = "https://github.com/cstrikest/DRL_Snakey",
packages = find_packages(),
zip_safe = True,
classifiers = [
"Programming Language :: Python :: 3.6",
"Environment :: MacOS X",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: Chinese (Simplified)",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)