-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.52 KB
/
setup.py
File metadata and controls
41 lines (37 loc) · 1.52 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
import setuptools
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
with open("requirements.txt", "r") as fin:
REQS = fin.read().splitlines()
with open("requirements-dev.txt", "r") as fin:
REQS_DEV = [item for item in fin.read().splitlines() if not item.endswith(".txt")]
setuptools.setup(
name="sag-py-cache-decorator",
version="0.3.4",
description="A decorator to cache method call results with similar parameters",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/SamhammerAG/sag_py_cache_decorator",
author="Samhammer AG",
author_email="support@samhammer.de",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
],
keywords="cache, decorator",
packages=setuptools.find_packages(exclude=["tests"]),
package_data={"sag_py_cache_decorator": ["py.typed"]},
python_requires=">=3.12",
install_requires=REQS,
extras_require={"dev": REQS_DEV},
project_urls={
"Documentation": "https://github.com/SamhammerAG/sag_py_cache_decorator",
"Bug Reports": "https://github.com/SamhammerAG/sag_py_cache_decorator/issues",
"Source": "https://github.com/SamhammerAG/sag_py_cache_decorator",
},
)