-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (50 loc) · 1.61 KB
/
setup.py
File metadata and controls
52 lines (50 loc) · 1.61 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup
version = "0.0.7"
repo = "https://github.com/Simatwa/livescore-api"
info = "Access and manipulate matches from Livescore.com"
author = "Smartwa"
setup(
name="livescore-api",
packages=["livescore_api"],
version=version,
license="MIT",
author=author,
maintainer=author,
author_email="smartwacaleb@gmail.com",
description=info,
url=repo,
project_urls={"Bug Report": f"{repo}/issues/new"},
install_requires=[
"argparse>=1.1",
"requests>=2.0.2",
"pandas>=1.3.3",
"tabulate==0.9.0",
"smartbetsAPI==1.3.1",
"tqdm==4.65.0",
"colorama==0.4.6",
],
python_requires=">=3.8",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: Free For Home Use",
"Intended Audience :: Customer Service",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
entry_points={
"console_scripts": [
("livescore-api = livescore_api.console:main"),
]
},
keywords=["livescore", "football", "livescore-api", "api"],
)