remove requirements.txt

This commit is contained in:
debugtalk
2018-02-21 23:59:19 +08:00
parent 6ae532df9e
commit 66b6f8d904
5 changed files with 11 additions and 11 deletions

View File

@@ -8,8 +8,8 @@ python:
install:
- pip install coverage
- pip install coveralls
- pip install -r requirements.txt
- pip install flask
- python setup.py install
script:
- coverage run --source=httprunner -m unittest discover
after_success:

View File

@@ -1,2 +1 @@
include README.rst
include requirements.txt
include README.rst

View File

@@ -3,7 +3,7 @@
To develop or debug `HttpRunner`, you can install relevant requirements and use `main-hrun.py` or `main-locust.py` as entrances.
```bash
$ pip install -r requirements.txt
$ python setup.py install
$ python main-hrun -h
$ python main-locust -h
```

View File

@@ -1,6 +0,0 @@
requests
PyYAML
PyUnitReport
har2case
colorama
colorlog

View File

@@ -7,7 +7,14 @@ from setuptools import find_packages, setup
with io.open("README.rst", encoding='utf-8') as f:
long_description = f.read()
install_requires = open("requirements.txt").readlines()
install_requires = [
"requests",
"PyYAML",
"PyUnitReport",
"har2case",
"colorama",
"colorlog"
]
setup(
name='HttpRunner',