-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
35 lines (32 loc) · 1011 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
34
35
#encoding: utf-8
import io
from postman2case import __version__
from setuptools import find_packages, setup
with io.open("README.md", encoding='utf-8') as f:
long_description = f.read()
setup(
name='postman2case',
version=__version__,
description='Convert POSTMAN data to JSON testcases for HttpRunner.',
long_description=long_description,
author='luguo',
author_email='[email protected]',
url='https://github.com/HttpRunner/postman2case',
license='MIT',
packages=find_packages(exclude=['test.*', 'test']),
package_data={},
keywords='postman converter json',
install_requires=[],
classifiers=[
"Development Status :: 3 - Alpha",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
entry_points={
'console_scripts': [
'postman2case=postman2case.cli:main'
]
}
)