forked from Cqsi/lichs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 844 Bytes
/
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
import setuptools
with open("docs\\PYPIREADME.md", "r") as f:
long_description = f.read()
with open("VERSION", "r") as f:
version_num = f.read()
setuptools.setup(
name="lichs",
version=version_num,
author="Casimir Rönnlöf",
author_email="casimirr04@gmail.com",
description="Play chess against other real players in your terminal using Lichess",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Cqsi/lichs",
packages=["lichs"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
],
python_requires='>=3.6',
install_requires=["python-chess", "berserk"],
entry_points={
"console_scripts": [
"lichs=lichs.__main__:main"
]
},
)