-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 1.15 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
from typing import Dict
from setuptools import find_packages, setup
version: Dict[str, str] = {}
with open("blackjack_gui/version.py", encoding="utf-8") as f:
exec(f.read(), version)
with open("README.md", encoding="utf-8") as f:
readme = f.read()
setup(
name="blackjack-gui",
version=version["__version__"],
description="A game of Blackjack with graphical user interface.",
long_description=readme,
long_description_content_type="text/markdown",
author="Simo Tukiainen",
author_email="tukiains@gmail.com",
url="https://github.com/tukiains/blackjack-gui",
license="MIT License",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.8",
install_requires=["pillow", "wheel", "pygame"],
extras_require={
"dev": ["pre-commit", "pytest", "pytest-flakefinder", "pylint", "mypy", "types-Pillow"],
},
scripts=["blackjack"],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment",
],
)