-
Notifications
You must be signed in to change notification settings - Fork 90
/
setup.py
28 lines (25 loc) · 1.17 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
from setuptools import setup, find_packages
version = open('pyswagger/__init__.py', 'r').readline().split()[2].strip("'")
setup(
name = 'pyswagger',
packages = find_packages(exclude=['*.tests.*']),
version = version,
description = 'A type-safe, dynamic, spec-compliant swagger client & converter for python',
author = 'Mission Liao',
author_email = '[email protected]',
url = 'https://github.com/mission-liao/pyswagger', # use the URL to the github repo
download_url = 'https://github.com/mission-liao/pyswagger/tarball/{0}'.format(version),
keywords = ['swagger', 'REST'], # arbitrary keywords
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires = ['six >= 1.7.2', 'pyaml>=15.03.1', 'validate_email']
)