-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
51 lines (48 loc) · 1.2 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
#!/usr/bin/env python
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
setup(
name='swagman',
version=open(os.path.join(here, 'VERSION')).read().strip(),
description='Convert PostMan Collection Report to Swagger file.',
long_description=open(os.path.join(here, 'README.rst')).read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
keywords=[
'postman',
'swagger',
],
author='Florent Pigout',
author_email='[email protected]',
url='https://github.com/novafloss/swagman',
license='MIT',
install_requires=[
'pyyaml',
],
extras_require={
'extra': [
'jinja2',
],
'release': [
'wheel',
'zest.releaser',
],
'test': [
'flake8',
'pytest',
'pytest-cov',
],
},
py_modules=['swagman'],
entry_points={
'console_scripts': [
'swagman = swagman:main',
]
}
)