mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-12 22:25:44 -04:00
working setuptools package distribution
This commit is contained in:
parent
93216a3c3e
commit
64f92af60b
8 changed files with 60 additions and 29 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -19,3 +19,9 @@ output/
|
||||||
data
|
data
|
||||||
data/
|
data/
|
||||||
archivebox/output
|
archivebox/output
|
||||||
|
archivebox/data
|
||||||
|
archivebox/VERSION
|
||||||
|
|
||||||
|
archivebox.egg-info/
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
|
3
MANIFEST.in
Normal file
3
MANIFEST.in
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
include archivebox/VERSION
|
||||||
|
graft archivebox/templates
|
||||||
|
graft archivebox/templates/static
|
1
VERSION
Normal file
1
VERSION
Normal file
|
@ -0,0 +1 @@
|
||||||
|
0.3.0
|
1
archive
1
archive
|
@ -1 +0,0 @@
|
||||||
bin/archivebox
|
|
File diff suppressed because one or more lines are too long
16
requirements.txt
Normal file
16
requirements.txt
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
base32-crockford
|
||||||
|
|
||||||
|
# pip
|
||||||
|
# setuptools
|
||||||
|
# ipdb
|
||||||
|
# mypy
|
||||||
|
# flake8
|
||||||
|
|
||||||
|
# wpull
|
||||||
|
# pywb
|
||||||
|
# pyppeteer
|
||||||
|
# GitPython
|
||||||
|
# youtube-dl
|
||||||
|
# archivenow
|
||||||
|
# requests
|
||||||
|
#
|
35
setup.py
35
setup.py
|
@ -1,18 +1,51 @@
|
||||||
|
import os
|
||||||
import setuptools
|
import setuptools
|
||||||
|
|
||||||
with open("README.md", "r") as fh:
|
with open("README.md", "r") as fh:
|
||||||
long_description = fh.read()
|
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()
|
||||||
|
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)
|
||||||
|
|
||||||
|
with open(os.path.join(script_dir, 'archivebox', 'VERSION'), 'w+') as f:
|
||||||
|
f.write(PYPI_VERSION)
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="archivebox",
|
name="archivebox",
|
||||||
version="0.3.0",
|
version=PYPI_VERSION,
|
||||||
author="Nick Sweeting",
|
author="Nick Sweeting",
|
||||||
author_email="git@nicksweeting.com",
|
author_email="git@nicksweeting.com",
|
||||||
description="The self-hosted internet archive.",
|
description="The self-hosted internet archive.",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
url="https://github.com/pirate/ArchiveBox",
|
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',
|
||||||
|
'Donations': 'https://github.com/pirate/ArchiveBox/wiki/Donations',
|
||||||
|
},
|
||||||
packages=setuptools.find_packages(),
|
packages=setuptools.find_packages(),
|
||||||
|
python_requires='>=3.6',
|
||||||
|
install_requires=[
|
||||||
|
"base32-crockford==0.3.0",
|
||||||
|
],
|
||||||
|
entry_points={
|
||||||
|
'console_scripts': [
|
||||||
|
'archivebox = archivebox.archive:main',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
package_data={
|
||||||
|
'archivebox': ['VERSION', 'templates/*', 'templates/static/*'],
|
||||||
|
},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue