forked from jsvine/waybackpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.06 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
import sys, os
from setuptools import setup, find_packages
import subprocess
version = "0.3.7"
base_reqs = [
"requests"
]
setup(
name="waybackpack",
description="Command-line tool that lets you download the entire Wayback Machine archive for a given URL.",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.4"
],
keywords="wayback machine archive",
author="Jeremy Singer-Vine",
author_email="[email protected]",
url="https://github.com/jsvine/waybackpack",
license="MIT",
version=version,
packages=find_packages(exclude=["test",]),
tests_require=[ "nose" ] + base_reqs,
install_requires=base_reqs,
entry_points={
"console_scripts": [ "waybackpack = waybackpack.cli:main" ]
}
)