-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
58 lines (52 loc) · 2.03 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 pathlib import Path
import setuptools
__version__ = "1.3.1"
__author__ = "Michał Skibiński"
this_directory = Path(__file__).parent
long_description = (this_directory / "readme.md").read_text()
with open(this_directory / "requirements.txt") as f:
requirements = f.read().splitlines()
setuptools.setup(
name="py-draughts",
install_requires=requirements,
version=__version__,
author=__author__,
author_email="mskibinski109@gmail.com",
description="""
A draughts library with advenced (customizable) WEB UI move generation and validation,
PDN parsing and writing. Supports multiple variants of game.
""".replace(
"\n", " "
).strip(),
long_description=long_description,
# rst
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
package_data={
"draughts": ["server/static/js/*", "server/static/css/*", "server/templates/*"]
},
license="GPL-3.0+",
keywords=" draughts, checkers, AI mini-max, game, board",
url="https://github.com/michalskibinski109/py-draughts",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Games/Entertainment :: Turn Based Strategy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
],
project_urls={
"Documentation": "https://michalskibinski109.github.io/py-draughts/index.html",
},
python_requires=">=3.7",
)