1
0
Fork 0
mirror of synced 2024-06-02 02:25:20 +12:00
ArchiveBox/setup.py
2019-04-27 17:49:54 -04:00

114 lines
3.8 KiB
Python

import os
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
script_dir = os.path.abspath(os.path.dirname(os.path.abspath(__file__)))
VERSION = open(os.path.join(script_dir, 'VERSION'), 'r').read().strip()
try:
GIT_HEAD = open(os.path.join(script_dir, '.git', 'HEAD'), 'r').read().strip().split(': ')[1]
GIT_SHA = open(os.path.join(script_dir, '.git', GIT_HEAD), 'r').read().strip()[:9]
PYPI_VERSION = "{}+{}".format(VERSION, GIT_SHA)
except:
PYPI_VERSION = VERSION
with open(os.path.join(script_dir, 'archivebox', 'VERSION'), 'w+') as f:
f.write(PYPI_VERSION)
setuptools.setup(
name="archivebox",
version=PYPI_VERSION,
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",
project_urls={
'Documentation': 'https://github.com/pirate/ArchiveBox/Wiki',
'Community': 'https://github.com/pirate/ArchiveBox/wiki/Web-Archiving-Community',
'Source': 'https://github.com/pirate/ArchiveBox',
'Bug Tracker': 'https://github.com/pirate/ArchiveBox/issues',
'Roadmap': 'https://github.com/pirate/ArchiveBox/wiki/Roadmap',
'Changelog': 'https://github.com/pirate/ArchiveBox/wiki/Changelog',
'Patreon': 'https://github.com/pirate/ArchiveBox/wiki/Donations',
},
packages=setuptools.find_packages(),
python_requires='>=3.6',
install_requires=[
"dataclasses==0.6",
"mypy-extensions==0.4.1",
"base32-crockford==0.3.0",
"django==2.2",
"django-extensions==2.1.6",
"python-crontab==2.3.6",
"youtube-dl",
"ipython",
# Some/all of these will likely be added in the future:
# wpull
# pywb
# pyppeteer
# archivenow
# requests
],
entry_points={
'console_scripts': [
'archivebox = archivebox.__main__:main',
],
},
package_data={
'archivebox': [
# Manifest.ini must correspond 1:1 with this list
'VERSION',
'themes/*',
'themes/static/*',
'themes/admin/*'
'themes/default/*'
'themes/default/static/*'
'legacy/templates/*',
'legacy/templates/static/*',
'legacy/ArchiveBox.conf',
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Topic :: System :: Archiving",
"Topic :: System :: Archiving :: Backup",
"Topic :: System :: Recovery Tools",
"Topic :: Sociology :: History",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Legal Industry",
"Intended Audience :: System Administrators",
"Environment :: Console",
"Environment :: Web Environment",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
'Framework :: Django',
"Typing :: Typed",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
],
)