Skip to content

Commit

Permalink
fix setup.py, remove requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
httprunner committed Jun 13, 2018
1 parent 7b641a9 commit cd9ac1b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
with io.open("README.md", encoding='utf-8') as f:
long_description = f.read()

install_requires = open("requirements.txt").readlines()

setup(
name='postman2case',
version=__version__,
Expand All @@ -21,9 +19,12 @@
packages=find_packages(exclude=['test.*', 'test']),
package_data={},
keywords='postman converter json',
install_requires=install_requires,
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={
Expand Down

0 comments on commit cd9ac1b

Please sign in to comment.