-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
63 lines (61 loc) · 2.01 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python3
from setuptools import find_packages, setup
setup(
name='pvat',
version='0.0.0.dev2',
description=(
'Python implementations of variance reduction techniques for'
' extensive-form games'
),
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
url='https://github.com/uoftcprg/pvat',
author='University of Toronto Computer Poker Student Research Group',
author_email='uoftcprg@studentorg.utoronto.ca',
license='MIT',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Topic :: Education',
'Topic :: Games/Entertainment',
'Topic :: Games/Entertainment :: Board Games',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
keywords=[
'aivat',
'artificial-intelligence',
'deep-learning',
'divat',
'game',
'game-development',
'game-theory',
'holdem-poker',
'imperfect-information-game',
'libratus',
'mivat',
'pluribus',
'poker',
'python',
'reinforcement-learning',
'texas-holdem',
],
project_urls={
'Documentation': 'https://pvat.readthedocs.io/en/latest/',
'Source': 'https://github.com/uoftcprg/pvat',
'Tracker': 'https://github.com/uoftcprg/pvat/issues',
},
packages=find_packages(),
install_requires='numpy>=1.26.4,<2',
python_requires='>=3.11',
package_data={'pvat': ['py.typed']},
)