-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
61 lines (59 loc) · 2.03 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
#!/usr/bin/env python3
from setuptools import find_packages, setup
setup(
name='cardroom',
version='0.0.1.dev15',
description='A Django application for poker tournament and table management',
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
url='https://github.com/uoftcprg/cardroom',
author='University of Toronto Computer Poker Student Research Group',
author_email='[email protected]',
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',
],
keywords=[
'channels',
'django',
'game',
'game-development',
'holdem-poker',
'imperfect-information-game',
'poker',
'poker-engine',
'poker-game',
'poker-library',
'poker-strategies',
'python',
'texas-holdem',
],
project_urls={
'Documentation': 'https://cardroom.readthedocs.io/en/latest/',
'Source': 'https://github.com/uoftcprg/cardroom',
'Tracker': 'https://github.com/uoftcprg/cardroom/issues',
},
packages=find_packages(),
install_requires=[
'channels[daphne]>=4.0.0,<5',
'Django>=4.2.9,<5',
'djangorestframework>=3.14.0,<4',
'pokerkit~=0.4.17',
],
python_requires='>=3.11',
package_data={'cardroom': ['py.typed', 'static/**/*', 'templates/**/*']},
)