Skip to content
Snippets Groups Projects
Commit 5f54c8b3 authored by Nathan Hertz's avatar Nathan Hertz
Browse files

Added dependency to setup.py

parent edf033d9
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ from setuptools import setup
VERSION = open('src/vulture/_version.py').readlines()[-1].split()[-1].strip("\"'")
README = Path('README.md').read_text()
requires = ['pendulum']
tests_require = [
'pytest>=5.4,<6.0'
]
......@@ -19,7 +20,7 @@ setup(
author_email='dms-ssa@nrao.edu',
url='TBD',
license="GPL",
# install_requires=requires,
install_requires=requires,
tests_require=tests_require,
keywords=[],
packages=['vulture'],
......
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