Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Sofus Albert Høgsbro Rose
openlut
Commits
1e4e274b
Verified
Commit
1e4e274b
authored
Jan 26, 2017
by
Sofus Albert Høgsbro Rose
Browse files
Updated requirements.txt
parent
d103ae34
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
6 deletions
+11
-6
.gitlab-ci.yml
.gitlab-ci.yml
+1
-0
requirements.txt
requirements.txt
+7
-5
setup.py
setup.py
+3
-1
No files found.
.gitlab-ci.yml
View file @
1e4e274b
...
...
@@ -14,6 +14,7 @@ build:
stage
:
build
before_script
:
-
apt-get update && apt-get -y install python3-pip gcc libmagickwand-dev
-
pip3 install -r requirements.txt
script
:
-
python3 setup.py sdist
#Build source distribution.
-
python3 setup.py bdist_wheel
#Build Linux wheel.
...
...
requirements.txt
View file @
1e4e274b
numpy
==1.12.0
pygame
==1.9.3
PyOpenGL
==3.1.0
scipy
==0.18.1
Wand
==0.4.4
numpy
pygame
PyOpenGL
scipy
Wand
setuptools
pybind11
setup.py
View file @
1e4e274b
...
...
@@ -13,6 +13,8 @@ import pybind11
def
read
(
fname
):
return
open
(
join
(
path
.
dirname
(
__file__
),
fname
)).
read
()
pypi_deps
=
[
'numpy'
,
'wand'
,
'scipy'
,
'pygame'
,
'PyOpenGL'
,
'setuptools'
,
'pybind11'
]
#Make sure we're using gcc.
os
.
environ
[
"CC"
]
=
"g++"
...
...
@@ -46,7 +48,7 @@ setup( name = 'openlut',
keywords
=
[
'color'
,
'image'
,
'images'
,
'processing'
],
install_requires
=
[
'numpy'
,
'wand'
,
'scipy'
,
'pygame'
,
'PyOpenGL'
,
'setuptools'
,
'pybind11'
]
,
install_requires
=
pypi_deps
,
classifiers
=
[
'Development Status :: 3 - Alpha'
,
...
...
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