-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (36 loc) · 1.13 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
#
# This file is part of webiquette
# by Tom Elliott for the Institute for the Study of the Ancient World
# (c) Copyright 2022 by New York University
# Licensed under the AGPL-3.0; see LICENSE.txt file.
#
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="webiquette",
version="0.1",
author="Tom Elliott",
author_email="[email protected]",
description=(
"Wraps 'requests' and 'requests_cache' for automagical (but configurable) "
"client-side caching, robots.txt compliance, and other good-citizen behavior "
"for bots, scrapers, and scripts."
),
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.10.2",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
install_requires=[
"airtight",
"requests",
"requests_cache",
"textnorm",
"validators",
],
python_requires=">=3.6",
)