-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 991 Bytes
/
setup.py
File metadata and controls
37 lines (32 loc) · 991 Bytes
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
from setuptools import setup, find_packages
install_requires = [
"dictknife[load]>=0.14.0", # for ruamel.yaml
"prestring",
"marshmallow>=3.0.0",
"magicalimport",
"typing_extensions",
]
docs_extras = []
tests_require = ["pytest"]
testing_extras = tests_require + []
setup(
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
],
keywords="swagger,codegen,marshmallow,code-generation,schema",
packages=find_packages(exclude=["swagger_marshmallow_codegen.tests"]),
install_requires=install_requires,
extras_require={
"dev": ["black", "flake8"],
"testing": testing_extras,
"docs": docs_extras,
},
tests_require=tests_require,
test_suite="swagger_marshmallow_codegen.tests",
)