Skip to content

Commit 3197ccc

Browse files
committed
[setup] Add test specific dependencies
1 parent 3ab658c commit 3197ccc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@
3030
with open('README.md') as f:
3131
description_text = f.read()
3232

33-
install_req = ["lxml", "pyyaml>=5.1", "rdflib", "docopt", "pathlib", "owlrl"]
33+
install_req = ["lxml", "pyyaml>=5.1", "rdflib", "docopt", "pathlib"]
34+
35+
tests_req = ["owlrl", "requests"]
3436

3537
if sys.version_info < (3, 4):
3638
install_req += ["enum34"]
@@ -45,6 +47,7 @@
4547
packages=packages,
4648
test_suite='test',
4749
install_requires=install_req,
50+
tests_require=tests_req,
4851
include_package_data=True,
4952
long_description=description_text,
5053
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)