-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.03 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (32 loc) · 1.03 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
from pathlib import Path
from setuptools import find_packages, setup
README = Path(__file__).with_name("README.md").read_text(encoding="utf-8")
VERSION = "2.0.4"
setup(
name="Openix",
version=VERSION,
description="A simple chess openings (ECO) library for Python.",
long_description=README,
long_description_content_type="text/markdown",
license="MIT",
author="0xh7",
author_email="fjdjfjd1424@gmail.com",
packages=find_packages(),
install_requires=["python-chess"],
python_requires=">=3.7",
include_package_data=True,
package_data={
"Openix.open": ["*.json"],
},
url="https://github.com/0xh7/Openix-Library",
keywords=[
"chess", "ECO", "openings", "chess openings",
"ai chess", "python chess", "openix", "game opening",
"board games", "chess library", "python library",
"python chess library", "python chess openings",
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)