-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (24 loc) · 805 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
""" sc2ai module setup script """
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="SC2AI",
version="0.0.1",
description="Brown's Starcraft 2 Reinforcement Learning Training Framework",
author="Brown University",
author_email="jun_ki_lee@brown.edu",
long_description=long_description,
keywords="Brown Starcraft AI",
url="https://github.com/junkilee/sc2ai",
packges=['s2cai'],
install_requires=[],
entry_points={},
classifiers=[
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: Mac OS X",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
"Intended Audience :: Science/Research"
]
)