-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
setup.py
executable file
·60 lines (56 loc) · 1.62 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
#!/usr/bin/env python
# vim: set sw=4 et:
from setuptools import setup, find_packages
__version__ = '1.7.5'
setup(
name='warcio',
version=__version__,
author='Ilya Kreymer',
author_email='[email protected]',
license='Apache 2.0',
packages=find_packages(exclude=['test']),
url='https://github.com/webrecorder/warcio',
description='Streaming WARC (and ARC) IO library',
long_description=open('README.rst').read(),
provides=[
'warcio',
],
install_requires=[
'six',
],
zip_safe=True,
entry_points="""
[console_scripts]
warcio = warcio.cli:main
""",
test_suite='',
extras_require={
'testing': [
'urllib3>=1.26.5,<1.26.16',
'pytest',
'pytest-cov',
'httpbin>=0.10.2',
'requests',
'wsgiprox',
'hookdns',
],
'all': [
'brotlipy',
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
]
)