Skip to content

Commit 3620825

Browse files
committed
updated toml
1 parent 1a923ce commit 3620825

File tree

1 file changed

+9
-42
lines changed

1 file changed

+9
-42
lines changed

pyproject.toml

Lines changed: 9 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -2,45 +2,25 @@
22
name = "poker_reinforcement_learning"
33
version = "0.1.0"
44
description = "Testbed for Reinforcement Learning in Poker. Implemented with Client/Socket technology."
5-
readme = "README.md" # Optional
6-
7-
# Specify which Python versions you support. In contrast to the
8-
# 'Programming Language' classifiers above, 'pip install' will check this
9-
# and refuse to install the project if the version does not match. See
10-
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
5+
readme = "README.md"
116
requires-python = ">=3.11"
12-
13-
# This is either text indicating the license for the distribution, or a file
14-
# that contains the license
15-
# https://packaging.python.org/en/latest/specifications/core-metadata/#license
167
license = { file = "LICENSE.txt" }
17-
18-
# This field adds keywords for your project which will appear on the
19-
# project page. What does your project relate to?
20-
#
21-
# Note that this is a list of additional keywords, separated
22-
# by commas, to be used to assist searching for the distribution in a
23-
# larger catalog.
24-
keywords = ["poker", "testbed", "reinforcement learning", "python", "server"] # Optional
8+
keywords = ["poker", "testbed", "reinforcement learning", "python", "server"]
259
authors = [
26-
{ name = "Sai Coumar", email = "sai.c.coumar1@gmail.com" } # Optional
10+
{ name = "Sai Coumar", email = "sai.c.coumar1@gmail.com" }
2711
]
2812
maintainers = [
29-
{ name = "Sai Coumar", email = "sai.c.coumar1@gmail.com" } # Optional
13+
{ name = "Sai Coumar", email = "sai.c.coumar1@gmail.com" }
3014
]
31-
32-
# Classifiers help users find your project by categorizing it.
33-
# For a list of valid classifiers, see https://pypi.org/classifiers/
34-
classifiers = [# Optional
15+
classifiers = [
3516
"Development Status :: 4 - Beta",
3617
"Intended Audience :: Developers",
37-
"License :: OSI Approved :: GNU General License",
18+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
3819
"Programming Language :: Python :: 3",
3920
"Programming Language :: Python :: 3 :: Only",
4021
]
4122

42-
dependencies = [
43-
]
23+
dependencies = []
4424

4525
[project.optional-dependencies]
4626
test = [
@@ -52,22 +32,9 @@ test = [
5232
"Bug Reports" = "https://github.com/saiccoumar/Poker/issues"
5333
"Source" = "https://github.com/saiccoumar/Poker"
5434

55-
# The following would provide a command line executable called `sample`
56-
# which executes the function `main` from this package when invoked.
57-
#[project.scripts] # Optional
58-
#sample = "sample:main"
59-
60-
61-
6235
[build-system]
63-
# Including torch and ninja here are needed to build the native code.
64-
# They will be installed as dependencies during the build, which can take a while the first time.
6536
requires = ["setuptools>=61.0.0", "wheel"]
66-
build-backend= "setuptools.build_meta"
37+
build-backend = "setuptools.build_meta"
6738

68-
# This is configuration specific to the `setuptools` build backend.
69-
# If you are using a different build backend, you will need to change this.
7039
[tool.setuptools]
71-
# If there are data files included in your packages that need to be
72-
# installed, specify them here.
73-
packages = ["poker_reinforcement_learning"]
40+
packages = ["poker_reinforcement_learning"]

0 commit comments

Comments
 (0)