This repository was archived by the owner on Jan 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.25 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.25 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 setuptools import setup
with open("README.rst") as f:
long_description = f.read()
setup(
name="lichess",
version="0.2.8",
description="Python wrapper for the Lichess API",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/qe/lichess",
author="Alex Ismodes",
author_email="helloemailmerighthere@gmail.com",
install_requires=["requests>=2.10.0", ],
license="MIT",
keywords="lichess chess api python wrapper",
project_urls={
"Documentation": "https://lichess.readthedocs.io",
"Issue Tracker": "https://github.com/qe/lichess/issues",
"Source Code": "https://github.com/qe/lichess",
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Games/Entertainment :: Turn Based Strategy",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
],
packages=["lichess",],
)