-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.17 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (33 loc) · 1.17 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
import setuptools
with open('VERSION.txt', 'r') as f:
version = f.read()
with open("README.md", "r") as fh:
long_description = fh.read()
PROJECT_URLS = {
'Bug Tracker': 'https://github.com/amasend/lichess_python_SDK/issues',
'Documentation': 'https://amasend.github.io/lichess_python_SDK/html/index.html',
'Source Code': 'https://github.com/amasend/lichess_python_SDK'
}
setuptools.setup(
name="async_lichess_sdk",
version=version,
author="Amaedeusz Masny",
author_email="amadeuszmasny@gmail.com",
description="Asynchronous Python API client for accessing the lichess.org API.",
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'aiohttp',
'python-chess',
],
url="https://github.com/amasend/lichees_python_SDK",
packages=setuptools.find_packages(exclude=["tests"]),
license="Apache Software License",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)