Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
gridtk
Commits
7c96261f
Commit
7c96261f
authored
Aug 16, 2016
by
André Anjos
💬
Browse files
[setup] Fix requirement parsing
parent
035f5c53
Pipeline
#3175
failed with stages
in 11 minutes and 30 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
7c96261f
...
...
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
import
sys
version
=
open
(
"version.txt"
).
read
().
rstrip
()
requirements
=
[
k
.
strip
()
for
k
in
open
(
"requirements.txt"
.
read
().
split
()]
requirements
=
[
k
.
strip
()
for
k
in
open
(
"requirements.txt"
)
.
read
().
split
()]
setup
(
name
=
'gridtk'
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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