-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
executable file
·37 lines (35 loc) · 1.08 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
import setuptools
import reqman
assert reqman.main
setuptools.setup(
name='reqman',
version=reqman.__version__,
entry_points={
'console_scripts': [
'reqman = reqman:main',
],
},
# py_modules=["reqman"],
author="manatlan",
author_email="[email protected]",
description="Create your http(s)-tests in simple yaml files, and run them with command line, against various environments",
long_description=open("README.md","r").read(),
long_description_content_type="text/markdown",
url="https://github.com/manatlan/reqman",
packages=["reqman"],
# packages=setuptools.find_packages(exclude=["tests"]),
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
),
install_requires=[
'aiohttp', # or 'httpx' (using com_httpx !!!)
'py-dom-xpath-six',
'pyyaml >= 4.2b1',
'stpl >= 1.13.2',
'colorama',
"pyjwt",
"junit-xml",
],
)