-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
56 lines (52 loc) · 1.45 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
import setuptools
def read(fname):
with open(fname) as fp:
content = fp.read()
return content
setuptools.setup(
name="Openman",
version="1.2.0",
license="MIT",
zip_safe=False,
python_requires=">=3.5",
url="https://github.com/codeasashu/openman",
keywords=[
"api",
"openapi",
"rest",
"specification",
"oas",
"documentation",
],
packages=setuptools.find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]
),
install_requires=[
"apispec==3.1.0",
"Click>=7.0",
"jsonpath-rw==1.4.0",
"connexion==2.14.1",
"swagger-ui-bundle==0.0.6",
"Faker==2.0.4",
],
tests_require=[
"pytest==5.2.2",
"coverage==4.5.4",
"tox==3.14.1",
"pytest-cov==2.8.1",
],
test_suite="tests",
description="A Postman to OpenAPI spec converter with mocking facilities",
long_description=read("README.md"),
long_description_content_type="text/markdown",
entry_points={"console_scripts": ["openman=openman.cli:cli"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
)