-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
49 lines (47 loc) · 1.39 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
45
46
47
48
49
"""Module setuptools script."""
from setuptools import setup
description = """
"""
setup(
name='autoLeague',
version='1.0.0',
description='autoLeague League of Legends dataset settings library',
long_description=description,
long_description_content_type="text/markdown",
author='hanueluni1106',
author_email='[email protected]',
license='MIT License',
keywords=[
'League of Legends',
'Machine Learning',
'Reinforcement Learning',
'Supervised Learning',
'TLoL',
'Dataset Generation',
'Data Scraping'
],
url='https://github.com/hanueluni1106/pyLoL.git',
packages=[
'autoLeague',
'autoLeague.bin',
'autoLeague.replays',
'autoLeague.dataset',
'autoLeague.preprocess'
],
install_requires=[
'absl-py',
'requests',
'psutil'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
)