-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
73 lines (69 loc) · 2.45 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
from setuptools import setup
from smartbets_API import __version__, __author__
def get_file(nm: str) -> list:
with open(nm) as file:
return file.readlines()
setup(
name="smartbetsAPI",
packages=["smartbets_API"],
version=__version__,
url="https://github.com/Simatwa/smartbetsAPI",
license="GPL-3.0",
author=__author__,
author_email="smartwacaleb@gmail.com",
maintainer="Smartwa Caleb",
maintainer_email="smartwacaleb@gmail.com",
description="Simple football prediction API",
long_description="\n".join(get_file("README.md")),
long_description_content_type="text/markdown",
install_requires=[
"appdirs==1.4.4",
"requests[socks]==2.31.0",
"colorama==0.4.6",
"bs4==0.0.1",
"Faker==15.3.4",
"pyfreeproxies==0.1.1",
],
extras_require={
"api": [
"fastapi[all]==0.110.1",
]
},
python_requires=">=3.9",
project_urls={
"Bug Report": "https://github.com/Simatwa/smartbetsAPI/issues/new",
"Homepage": "https://github.com/Simatwa/smartbetsAPI",
"Source Code": "https://github.com/Simatwa/smartbetsAPI",
"Issue Tracker": "https://github.com/Simatwa/smartbetsAPI/issues",
"Download": "https://github.com/Simatwa/smartbetsAPI/releases",
"Documentation": "https://github.com/Simatwa/smartbetsAPI/blob/main/README.md",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Customer Service",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Games/Entertainment",
],
keywords=[
"Football",
"Predictions",
"Betting API",
"Soccer predictions",
"Football Predictions",
],
entry_points={
"console_scripts": ["smartbetsAPI = smartbets_API.interface:start_server"],
},
)