forked from Yelp/bravado-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·60 lines (56 loc) · 1.75 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
57
58
59
60
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2013, Digium, Inc.
# Copyright (c) 2014-2015, Yelp, Inc.
import os
from setuptools import setup
import bravado_core
setup(
name="bravado-core",
version=bravado_core.version,
license="BSD 3-Clause License",
description="Library for adding Swagger support to clients and servers",
long_description=open(
os.path.join(
os.path.dirname(__file__),
"README.rst",
),
).read(),
author="Digium, Inc. and Yelp, Inc.",
author_email="[email protected]",
url="https://github.com/Yelp/bravado-core",
packages=["bravado_core"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
install_requires=[
"jsonref",
"jsonschema[format]>=2.5.1",
"python-dateutil",
"pyyaml",
"simplejson",
"six",
"swagger-spec-validator>=2.0.1",
"pytz",
"msgpack>=0.5.2",
],
package_data={
'bravado_core': ['py.typed'],
},
# https://mypy.readthedocs.io/en/latest/installed_packages.html
zip_safe=False,
extras_require={
':python_version<"3.5"': ['typing'],
':python_version<"3.4"': ['enum34'],
':python_version<"3.2"': ['functools32'],
},
python_requires='!=3.0,!=3.1,!=3.2,!=3.3,!=3.4,!=3.5.0',
)