-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (31 loc) · 906 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 distutils.core import setup
setup(
name='literature',
packages=['literature'],
version='0.1.0',
license='MIT',
description='Literature card game implementation',
author='Neel Somani',
author_email='[email protected]',
url='https://github.com/neelsomani/literature',
download_url='https://github.com/neelsomani/literature/releases',
keywords=[
'machine-learning',
'q-learning',
'neural-network',
'artificial-intelligence',
'card-game'
],
install_requires=[
'numpy==1.17.0',
'pytest==5.0.1',
'scikit-learn==0.21.3'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Games/Entertainment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6'
],
)