-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (45 loc) · 1.73 KB
/
setup.py
File metadata and controls
51 lines (45 loc) · 1.73 KB
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
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
VERSION = "1.0.3"
NAME = "pyplAI"
DESCRIPTION = "Biblioteca para Python con algoritmos de resolución de juegos de mesa (minimax, MCTS, SO-ISMCTS y MO-ISMCTS)"
LONG_DESCRIPTION = (HERE / "README.md").read_text(encoding='utf-8')
LONG_DESC_TYPE = "text/markdown"
AUTHOR = "Pedro Luis Soto Santos"
EMAIL = "pepoluis712@gmail.com"
URL = "https://github.com/plss12/pyplAI"
LICENSE = "MIT"
INSTALL_REQUIRES = []
KEYWORDS = ["python", "articial intelligence", "AI", "games", "board games", "minimax", "alpha-beta", "monte carlo", "monte carlo tree search", "UCT", "game theory", "information set", "perfect information", "imperfect information"]
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Natural Language :: Spanish",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESC_TYPE,
author=AUTHOR,
author_email=EMAIL,
url=URL,
license=LICENSE,
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
include_package_data=True,
keywords= KEYWORDS,
classifiers= CLASSIFIERS
)