-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 950 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
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
with open("requirements.txt") as f:
requirements = f.read().splitlines()
VERSION = "0.0.0"
setup(
name="chesscom",
version=VERSION,
license="MIT",
description="Chess.com unofficial Python API.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Jeffrey Wardman",
author_email="[email protected]",
maintainer="Jeffrey Wardman",
maintainer_email="[email protected]",
url="https://github.com/jeffreywardman/chesscom",
download_url=f"https://github.com/jeffreywardman/chesscom/archive/v_{VERSION}.tar.gz",
packages=find_packages(),
keywords=["chess", "chess.com", "api"],
install_requires=requirements,
extras_require={
"dev": requirements + ["black==21.5b1", "isort==4.3.0", "pytest_cov==2.12.0"]
},
)