Updated requirements.txt
parent
d103ae34f2
commit
1e4e274b55
|
@ -14,6 +14,7 @@ build:
|
||||||
stage: build
|
stage: build
|
||||||
before_script:
|
before_script:
|
||||||
- apt-get update && apt-get -y install python3-pip gcc libmagickwand-dev
|
- apt-get update && apt-get -y install python3-pip gcc libmagickwand-dev
|
||||||
|
- pip3 install -r requirements.txt
|
||||||
script:
|
script:
|
||||||
- python3 setup.py sdist #Build source distribution.
|
- python3 setup.py sdist #Build source distribution.
|
||||||
- python3 setup.py bdist_wheel #Build Linux wheel.
|
- python3 setup.py bdist_wheel #Build Linux wheel.
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
numpy==1.12.0
|
numpy
|
||||||
pygame==1.9.3
|
pygame
|
||||||
PyOpenGL==3.1.0
|
PyOpenGL
|
||||||
scipy==0.18.1
|
scipy
|
||||||
Wand==0.4.4
|
Wand
|
||||||
|
setuptools
|
||||||
|
pybind11
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -14,6 +14,8 @@ import pybind11
|
||||||
def read(fname):
|
def read(fname):
|
||||||
return open(join(path.dirname(__file__), fname)).read()
|
return open(join(path.dirname(__file__), fname)).read()
|
||||||
|
|
||||||
|
pypi_deps = ['numpy', 'wand', 'scipy', 'pygame','PyOpenGL', 'setuptools', 'pybind11']
|
||||||
|
|
||||||
#Make sure we're using gcc.
|
#Make sure we're using gcc.
|
||||||
os.environ["CC"] = "g++"
|
os.environ["CC"] = "g++"
|
||||||
os.environ["CXX"] = "g++"
|
os.environ["CXX"] = "g++"
|
||||||
|
@ -46,7 +48,7 @@ setup( name = 'openlut',
|
||||||
|
|
||||||
keywords = ['color', 'image', 'images', 'processing'],
|
keywords = ['color', 'image', 'images', 'processing'],
|
||||||
|
|
||||||
install_requires = ['numpy', 'wand', 'scipy', 'pygame','PyOpenGL', 'setuptools', 'pybind11'],
|
install_requires = pypi_deps,
|
||||||
|
|
||||||
classifiers = [
|
classifiers = [
|
||||||
'Development Status :: 3 - Alpha',
|
'Development Status :: 3 - Alpha',
|
||||||
|
|
Loading…
Reference in New Issue