-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
executable file
·31 lines (26 loc) · 909 Bytes
/
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
#!/usr/bin/env python3
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="har2requests",
version="0.2.2",
author="Louis Abraham",
license="MIT",
author_email="louis.abraham@yahoo.fr",
description="Generate Python Requests code from HAR file",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/louisabraham/har2requests",
packages=["har2requests"],
install_requires=["black", "click", "python-dateutil", "tqdm"],
extras_require={"dev": ["wheel"]},
python_requires=">=3.6",
entry_points={"console_scripts": ["har2requests = har2requests:main"]},
classifiers=[
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
],
)