This repository was archived by the owner on Jul 16, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
12from poker_ai .cli .runner import cli
23
34
Original file line number Diff line number Diff line change 1717from . import terminal
1818from . import utils
1919
20- __version__ = "1.0.0rc1 "
20+ __version__ = "1.0.0rc3 "
Original file line number Diff line number Diff line change @@ -19,6 +19,13 @@ def get_package_description() -> str:
1919 return f"{ readme } \n \n { history } "
2020
2121
22+ def get_requirements () -> List [str ]:
23+ """Returns all requirements for this package."""
24+ with open ('requirements.txt' ) as f :
25+ requirements = f .read ().splitlines ()
26+ return requirements
27+
28+
2229setuptools .setup (
2330 name = "poker_ai" ,
2431 version = poker_ai .__version__ ,
@@ -29,9 +36,10 @@ def get_package_description() -> str:
2936 long_description_content_type = "text/markdown" ,
3037 url = "https://github.com/fedden/poker_ai" ,
3138 packages = setuptools .find_packages (),
39+ install_requires = get_requirements (),
3240 classifiers = [
3341 "Programming Language :: Python :: 3" ,
34- "License :: OSI Approved :: GPL License" ,
42+ "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) " ,
3543 "Operating System :: OS Independent" ,
3644 ],
3745 scripts = get_scripts_from_bin (),
You can’t perform that action at this time.
0 commit comments