-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 936 Bytes
/
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
import pathlib
from setuptools import find_packages, setup
README = (pathlib.Path(__file__).parent / "README.md").read_text()
setup(
name="binary4fun",
author="Moritz Körber",
author_email="",
description="binary4fun is a small game, which tries to guess a number between 1 and 100 by binary search.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/moritzkoerber/binary4fun",
keywords="game, binary search",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3",
extras_require={
"tests": ["pytest", "sh"],
},
entry_points={
"console_scripts": [
"binary4fun=binary4fun.__main__:main",
],
},
)