forked from oduwsdl/ipwb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
76 lines (67 loc) · 1.93 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env python
from setuptools import setup
from ipwb import __version__
with open('README.md') as f:
long_description = f.read()
desc = """InterPlanetary Wayback (ipwb): Web Archive integration with IPFS"""
setup(
name='ipwb',
version=__version__,
url='https://github.com/oduwsdl/ipwb',
download_url="https://github.com/oduwsdl/ipwb",
author='Mat Kelly',
author_email='[email protected]',
description=desc,
packages=['ipwb'],
license='MIT',
long_description=long_description,
long_description_content_type="text/markdown",
provides=[
'ipwb'
],
install_requires=[
'warcio>=1.5.3',
'ipfsapi>=0.4.2',
'Flask==0.12.3',
'pycryptodome>=3.4.11',
'requests>=2.19.1',
'beautifulsoup4>=4.6.3',
'six==1.11.0',
'surt>=0.3.0'
],
tests_require=[
'flake8>=3.4',
'pytest>=3.6',
'pytest-cov',
'pytest-flake8'
],
entry_points="""
[console_scripts]
ipwb = ipwb.__main__:main
""",
package_data={
'ipwb': [
'assets/*.*',
'assets/favicons/*.*',
'templates/*.*'
]
},
zip_safe=False,
keywords='http web archives ipfs distributed odu wayback memento',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Archiving',
'Topic :: System :: Archiving :: Backup',
'Topic :: System :: Archiving :: Mirroring',
'Topic :: Utilities',
]
)
# Publish to pypi:
# rm -rf dist; python setup.py sdist bdist_wheel; twine upload dist/*