-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
53 lines (51 loc) · 1.73 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
with open('README.rst') as readme:
long_description = readme.read()
setup(
name='swagger-spec-compatibility',
version='1.3.4',
author='Yelp, Inc.',
author_email='[email protected]',
description='Python library to check Swagger Spec backward compatibility',
long_description=long_description,
url='https://github.com/Yelp/swagger-spec-compatibility',
install_requires=[
'bravado',
'bravado-core != 5.16.0',
'swagger-spec-validator',
'six',
'termcolor',
'typing_extensions',
'venusian',
],
extras_require={
':python_version<"3.5"': ['typing'],
':python_version<"3.2"': ['functools32'],
},
license='Copyright Yelp, Inc. 2018',
packages=find_packages(exclude=('tests*', 'testing*')),
package_data={
'swagger_spec_compatibility': ['py.typed'],
},
entry_points={
'console_scripts': [
'swagger_spec_compatibility = swagger_spec_compatibility.__main__:main',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)