update setup.py
This commit is contained in:
parent
eb80dc26a1
commit
1aed8a9870
2 changed files with 12 additions and 5 deletions
5
assets/README.md
Normal file
5
assets/README.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# assets/
|
||||||
|
|
||||||
|
This folder contains assets used by the Jekyll Static Site Generator for ArchiveBox.io.
|
||||||
|
|
||||||
|
It cannot be moved or renamed or the custom CSS on ArchiveBox.io will break.
|
12
setup.py
12
setup.py
|
@ -6,7 +6,7 @@ from pathlib import Path
|
||||||
|
|
||||||
|
|
||||||
PKG_NAME = "archivebox"
|
PKG_NAME = "archivebox"
|
||||||
DESCRIPTION = "The self-hosted internet archive."
|
DESCRIPTION = "Self-hosted internet archiving solution."
|
||||||
LICENSE = "MIT"
|
LICENSE = "MIT"
|
||||||
AUTHOR = "Nick Sweeting"
|
AUTHOR = "Nick Sweeting"
|
||||||
AUTHOR_EMAIL="git@nicksweeting.com"
|
AUTHOR_EMAIL="git@nicksweeting.com"
|
||||||
|
@ -15,9 +15,10 @@ PROJECT_URLS = {
|
||||||
"Source": f"{REPO_URL}",
|
"Source": f"{REPO_URL}",
|
||||||
"Documentation": f"{REPO_URL}/wiki",
|
"Documentation": f"{REPO_URL}/wiki",
|
||||||
"Bug Tracker": f"{REPO_URL}/issues",
|
"Bug Tracker": f"{REPO_URL}/issues",
|
||||||
"Changelog": f"{REPO_URL}/wiki/Changelog",
|
"Changelog": f"{REPO_URL}/releases",
|
||||||
"Roadmap": f"{REPO_URL}/wiki/Roadmap",
|
"Roadmap": f"{REPO_URL}/wiki/Roadmap",
|
||||||
"Community": f"{REPO_URL}/wiki/Web-Archiving-Community",
|
"Community": f"{REPO_URL}/wiki/Web-Archiving-Community",
|
||||||
|
"Demo": f"https://demo.archivebox.io",
|
||||||
"Donate": f"{REPO_URL}/wiki/Donations",
|
"Donate": f"{REPO_URL}/wiki/Donations",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,12 +40,12 @@ INSTALL_REQUIRES = [
|
||||||
"mypy-extensions>=0.4.3",
|
"mypy-extensions>=0.4.3",
|
||||||
"django>=3.1.3,<3.2",
|
"django>=3.1.3,<3.2",
|
||||||
"django-extensions>=3.0.3",
|
"django-extensions>=3.0.3",
|
||||||
"dateparser",
|
"dateparser>=1.0.0",
|
||||||
"ipython",
|
"youtube-dl>=2021.04.17",
|
||||||
"youtube-dl",
|
|
||||||
"python-crontab>=2.5.1",
|
"python-crontab>=2.5.1",
|
||||||
"croniter>=0.3.34",
|
"croniter>=0.3.34",
|
||||||
"w3lib>=1.22.0",
|
"w3lib>=1.22.0",
|
||||||
|
"ipython>5.0.0",
|
||||||
]
|
]
|
||||||
EXTRAS_REQUIRE = {
|
EXTRAS_REQUIRE = {
|
||||||
'sonic': [
|
'sonic': [
|
||||||
|
@ -133,6 +134,7 @@ setuptools.setup(
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
|
"Programming Language :: Python :: 3.9",
|
||||||
"Framework :: Django",
|
"Framework :: Django",
|
||||||
"Typing :: Typed",
|
"Typing :: Typed",
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue