Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KarimPwnz committed Dec 12, 2021
1 parent ec79acd commit b23301a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# waybacked
19 changes: 17 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,26 @@
import setuptools

with open("README.md", "r") as f:
long_description = f.read()

setuptools.setup(
name="waybacked",
author="Karim Rahal",
author_email="[email protected]",
version="0.1",
license="MIT",
author="karimpwnz",
author_email="[email protected]",
description="Get URLs from the Wayback Machine.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/karimpwnz/waybacked",
project_urls={
"Bug Tracker": "https://github.com/karimpwnz/waybacked/issues", },
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Security",
],
packages=["waybacked"],
entry_points={"console_scripts": ["waybacked = waybacked.__main__:main"]},
python_requires=">=3.6",
Expand Down

0 comments on commit b23301a

Please sign in to comment.