-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 975 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 975 Bytes
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
from setuptools import setup, find_packages
try:
with open('readme.md', 'r') as f:
long_description = f.read()
except FileNotFoundError as e:
long_description = "cached_requests is a simple and effective caching layer for Python requests."
setup(
name="cached_requests",
version="0.2.2",
author="ThefCraft",
author_email="sisodiyalaksh@gmail.com",
url="https://github.com/thefcraft/cached_requests",
description="A Python library that provides a simple and effective caching layer for web requests.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=True,
package_data={
"cached_requests": ["*.pyi", "py.typed"]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=["requests"]
)