Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #104 from fedden/feature/update-averaging-script-a…
Browse files Browse the repository at this point in the history
…nd-update-clustering

Feature/update averaging script and update clustering
  • Loading branch information
fedden authored Jul 5, 2020
2 parents 294da2d + 10b7c43 commit 4d0d8d2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions bin/poker_ai
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
from poker_ai.cli.runner import cli


Expand Down
2 changes: 1 addition & 1 deletion poker_ai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
from . import terminal
from . import utils

__version__ = "1.0.0rc1"
__version__ = "1.0.0rc3"
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ def get_package_description() -> str:
return f"{readme}\n\n{history}"


def get_requirements() -> List[str]:
"""Returns all requirements for this package."""
with open('requirements.txt') as f:
requirements = f.read().splitlines()
return requirements


setuptools.setup(
name="poker_ai",
version=poker_ai.__version__,
Expand All @@ -29,9 +36,10 @@ def get_package_description() -> str:
long_description_content_type="text/markdown",
url="https://github.com/fedden/poker_ai",
packages=setuptools.find_packages(),
install_requires=get_requirements(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPL License",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
scripts=get_scripts_from_bin(),
Expand Down

0 comments on commit 4d0d8d2

Please sign in to comment.