-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 794 Bytes
/
setup.py
File metadata and controls
29 lines (24 loc) · 794 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
import os
from codecs import open
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'requirements.txt'), encoding='utf-8') as fp:
requirements = fp.read().splitlines()
setup(
name='pyswagger',
version='0.1.0',
description=(
'A Python client that reads a JSON formatted Swagger schema ' +
'generates methods to interface directly with the HTTP API'
),
url='https://cto-github.cisco.com/rightlag/pyswagger',
author='Jason Walsh',
author_email='jaswalsh@cisco.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
],
keywords='swagger client sdk',
packages=find_packages(exclude=['test*']),
install_requires=requirements
)