forked from oduwsdl/ipwb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (57 loc) · 1.63 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
#!/usr/bin/env python
from setuptools import setup
from ipwb import __version__
long_description = open('README.rst').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,
provides=[
'ipwb'
],
install_requires=[
'pywb',
'ipfsapi',
'flask',
'pycrypto'
],
tests_require=[
'pytest'
],
entry_points="""
[console_scripts]
ipwb = ipwb.__main__:main
""",
package_data={
'ipwb': [
'webui/*.*',
'webui/favicons/*.*',
'samples/indexes/*.*',
'samples/warcs/*.*'
]
},
keywords='http web archives ipfs distributed odu wayback',
classifiers=[
'Development Status :: 2 - Pre-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: python setup.py sdist upload -r pypi