-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (25 loc) · 818 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
31
from pathlib import Path
from setuptools import find_packages, setup
with Path.open("README.md") as readme_file:
README = readme_file.read()
setup_args = {
"name": "dequest",
"version": "0.3.0",
"description": "Declarative rest client",
"long_description_content_type": "text/markdown",
"long_description": README,
"license": "GNU",
"packages": find_packages(),
"author": "M.Shaeri",
"keywords": ["request", "declarative", "api", "rest", "rest client"],
"url": "https://github.com/birddevelper/dequest",
"download_url": "https://github.com/birddevelper/dequest",
}
install_requires = [
"requests>=2.32.3",
"redis>=5.2.1",
"defusedxml>=0.7.1",
"httpx>=0.28.1",
]
if __name__ == "__main__":
setup(**setup_args, install_requires=install_requires)