-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (30 loc) · 875 Bytes
/
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
from setuptools import setup
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open('README.md') as f:
readme = f.read()
setup(
name='har2swagger',
version='0.0.1',
description='convert har to swagger',
long_description=readme,
author='hugo',
author_email='[email protected]',
url='https://github.com/xiayuguo/har2swagger',
license='MIT',
install_requires=requirements,
classifiers=[
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='swagger',
entry_points={
'console_scripts': [
'har2swagger = har2swagger:main',
]
},
packages=['har2swagger']
)