-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·56 lines (52 loc) · 1.44 KB
/
setup.py
File metadata and controls
executable file
·56 lines (52 loc) · 1.44 KB
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
#!/usr/bin/env python3
import os
from unittest import TestLoader
from setuptools import setup
def tests():
return TestLoader().discover('tests')
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
try:
with open(os.path.join(BASE_DIR, 'README.rst')) as fp:
README = fp.read()
except IOError:
README = ''
setup(
name='har-extractor',
version='1.0.1',
description='HTTP Archive extractor',
long_description=README,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Archiving',
'Topic :: Utilities'
],
keywords='har http archive extractor',
url='https://github.com/dead-beef/har-extractor',
author='dead-beef',
author_email='contact@dead-beef.tk',
license='MIT',
py_modules=['har_extractor'],
entry_points={
'console_scripts': [
'har-extractor=har_extractor:main'
]
},
test_suite='setup.tests',
install_requires=['ijson'],
extras_require={
'dev': [
'coverage',
'twine>=1.8.1',
'wheel'
]
},
python_requires='>=3',
include_package_data=True,
zip_safe=False
)