-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
57 lines (50 loc) · 1.77 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
"""
Py-EgyBest-Api
~~~~~~~~~
:Copyright: (c) 2022 By Amine Soukara <https://github.com/AmineSoukara>.
:License: MIT, See LICENSE For More Details.
:Link: https://github.com/AmineSoukara/Py-EgyBest-Api
:Description: Asynchronous Python Wrapper For EgyBest-API.
"""
from setuptools import find_packages, setup
import datetime
AUTHOR = "AmineSoukara"
EMAIL = "[email protected]"
URL = "https://github.com/AmineSoukara/Py-EgyBest-Api"
# Get the long description
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
today_date = datetime.date.today()
VERSION = today_date.strftime("%-y.%-m.%-d")
# VERSION = '1.7'
setup(
name="Py-EgyBest-Api",
version=VERSION,
description="Asynchronous Python Wrapper For EgyBest-API.",
long_description=long_description,
long_description_content_type="text/markdown",
author=AUTHOR,
author_email=EMAIL,
url=URL,
license="MIT",
packages=find_packages(),
keywords="EgyBest Api Scrapper Python",
project_urls={
"Source": "https://github.com/AmineSoukara/Py-EgyBest-Api",
"Documentation": "https://github.com/AmineSoukara/Py-EgyBest-Api#readme",
"Tracker": "https://github.com/AmineSoukara/Py-EgyBest-Api/issues",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet",
],
python_requires=">=3.8",
install_requires=["aiohttp", "aiofiles", "dotmap", "requests", "urllib3"],
)