Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ We are more than happy to receive pull requests helping us improve the state of
Tests live under the `test/` folder. They can be run by running the following command:

```
$ python setup.py test
$ pytest
```

They can also be run as a part of `tox` and they should be ran in a virtual environment to ensure isolation of the testing environment.
Expand Down
13 changes: 0 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,13 @@
with open('requirements.txt') as f: # pylint: disable=W1514
install_reqs += f.read().splitlines()

setup_requires = [
'pytest-runner == 5.3.2',
]

# WARNING: This imposes limitations on test/requirements.txt such that the
# full Pip syntax is not supported. See also
# <http://stackoverflow.com/questions/14399534/>.
test_reqs = []
with open('test/requirements.txt') as f: # pylint: disable=W1514
test_reqs += f.read().splitlines()

with open('README.rst') as f: # pylint: disable=W1514
README = f.read()

dist = setup(
name='stone',
version='3.3.9',
install_requires=install_reqs,
setup_requires=setup_requires,
tests_require=test_reqs,
entry_points={
'console_scripts': ['stone=stone.cli:main'],
},
Expand Down