Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
beat
beat.web
Commits
7c95c0f3
Commit
7c95c0f3
authored
Sep 22, 2020
by
Samuel GAIST
Browse files
[setup] Add missing nose tests requirements
parent
2a918108
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
7c95c0f3
...
...
@@ -25,7 +25,8 @@
# #
###############################################################################
from
setuptools
import
setup
,
find_packages
from
setuptools
import
find_packages
from
setuptools
import
setup
def
load_requirements
(
f
):
...
...
@@ -33,6 +34,8 @@ def load_requirements(f):
return
[
k
for
k
in
retval
if
k
and
k
[
0
]
not
in
(
"#"
,
"-"
)]
test_dependencies
=
[
"nose"
]
# The only thing we do in this file is to call the setup() function with all
# parameters that define our package.
setup
(
...
...
@@ -49,6 +52,7 @@ setup(
include_package_data
=
True
,
zip_safe
=
False
,
install_requires
=
load_requirements
(
"requirements.txt"
),
tests_require
=
test_dependencies
,
classifiers
=
[
"Framework :: BEAT"
,
"Development Status :: 5 - Production/Stable"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment