From dff830196f70360713ace0a876ca86fad0ffd1a3 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Wed, 27 Mar 2019 11:40:00 -0400 Subject: [PATCH] add setup.py --- setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..64c9f104 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="archivebox", + version="0.3.0", + author="Nick Sweeting", + author_email="git@nicksweeting.com", + description="The self-hosted internet archive.", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/pirate/ArchiveBox", + packages=setuptools.find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], +)