-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
58 lines (54 loc) · 2 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="chess-ai",
version="0.3.0",
description=("A chess ai implementing minimax to find the best chess moves."),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PraxTube/chess-ai",
author="Prax",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
],
keywords="chess, ai, chess-ai",
package_dir={"": "src"},
# You can just specify package directories manually here if your project is
# simple. Or you can use find_packages().
packages=find_packages(where="src"),
include_package_data=True,
python_requires=">=3.8, <4",
install_requires=["chime", "tqdm"],
# List additional groups of dependencies here (e.g. development
# dependencies). Users will be able to install these using the "extras"
# syntax, for example:
#
# $ pip install sampleproject[dev]
#
# Similar to `install_requires` above, these must be valid existing
# projects.
# extras_require={
# "dev": ["check-manifest"],
# "test": ["coverage"],
# },
# Entry points. The following would provide a command called `sample` which
# executes the function `main` from this package when invoked:
entry_points={
"console_scripts": [
"cai=chess_ai:main.main",
"chess-ai=chess_ai:main.main",
],
},
project_urls={ # Optional
"Bug Reports": "https://github.com/PraxTube/chess-ai/issues",
"Source": "https://github.com/PraxTube/chess-ai",
},
)