-
Notifications
You must be signed in to change notification settings - Fork 56
/
setup.py
36 lines (34 loc) · 1.36 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
from setuptools import find_packages, setup
with open("README.md", "r") as readme:
long_description = readme.read()
setup(
name="stockfish",
author="Ilya Zhelyabuzhsky",
author_email="zhelyabuzhsky@icloud.com",
version="3.28.0",
license="MIT",
keywords="chess stockfish",
python_requires=">=3.7",
url="https://github.com/zhelyabuzhsky/stockfish",
description="Wraps the open-source Stockfish chess engine for easy integration into python.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(include=["stockfish", "stockfish.*"]),
install_requires=[],
setup_requires=["pytest-runner"],
tests_require=["pytest", "pytest-cov"],
classifiers=[
"Programming Language :: Python",
"Natural Language :: English",
"Operating System :: Unix",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
],
)