-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 924 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 924 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
from setuptools import setup
setup(
name="ansible-swagger-generator",
version="0.0.1",
author="Jason DeTiberus",
author_email="jdetiber@redhat.com",
description=("Generate Ansible Modules form a Swagger spec"),
license="Apache License, Version 2.0",
keywords="Ansible Swagger",
url="https://github.com/ansible-swagger-generator/ansible-swagger-generator",
packages=['swagger'],
install_requires=['click', 'requests'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Environment :: Console",
'Programming Language :: Python :: 2.7',
"License :: OSI Approved :: Apache Software License",
],
# use_2to3=True,
tests_require=['nose', 'coverage', 'flake8'],
test_suite='nose.collector',
entry_points={
'console_scripts': [
'ansible-swagger-generator=cli.cli:cli'
]
}
)