-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 822 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md") as fh:
long_description = fh.read()
setup(
name="waybackshot",
version="0.2.1",
description=(
"A simple API to retrieve screenshots of webpages stored on the Wayback Machine."
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/markusbink/waybackshot",
author="Markus Bink, Marcos Fernández-Pichel",
author_email="[email protected], [email protected]",
license="GPLv3.0",
packages=find_packages(),
zip_safe=False,
# python_requires="3.9.12",
install_requires=[
"requests==2.25.1",
"selenium==4.1.5",
"webdriver_manager==3.5.4",
],
)