Skip to content
Snippets Groups Projects
Commit 291b38d8 authored by Daniel Lyons's avatar Daniel Lyons
Browse files

Fixing the dependencies in setup.py so as not to annoy Conda

parent 115b8643
No related branches found
No related tags found
No related merge requests found
include *.txt *.ini *.cfg *.rst *.wsgi *.sh *.spec
include *.txt *.ini *.cfg *.spec
recursive-include pycapo *.py
recursive-include doc *
......@@ -12,10 +12,6 @@ with open(os.path.join(HERE, 'CHANGES.txt')) as f:
with open(os.path.join(HERE, NAME, '_version.py')) as f:
VERSION = f.readlines()[-1].split()[-1].strip("\"'")
INST_REQUIRES = []
TEST_REQUIRES = ['pytest==3.0.5']
SETUP_REQUIRES = ['pytest-runner==2.9']
setup(name=NAME,
version=VERSION,
description='CAPO (CASA, Archive, and Pipeline Options) for Python',
......@@ -44,9 +40,9 @@ setup(name=NAME,
include_package_data=True,
zip_safe=False,
test_suite='pycapo.tests',
install_requires=INST_REQUIRES,
tests_require=TEST_REQUIRES,
setup_requires=SETUP_REQUIRES,
install_requires=[],
tests_require=['pytest'],
setup_requires=['pytest-runner','pytest'],
entry_points={
'console_scripts': [
'pycapo = pycapo.commands:pycapo'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment