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
irp
Fresnel
Commits
2cdc29f1
Commit
2cdc29f1
authored
Feb 09, 2021
by
Leon Merten Lohse
Browse files
add missing file
parent
020c5a37
Changes
2
Hide whitespace changes
Inline
Side-by-side
pyproject.toml
0 → 100644
View file @
2cdc29f1
[build-system]
requires
=
[
"setuptools"
,
"wheel"
,
"scikit-build"
,
"cmake"
,
"ninja"
]
build-backend
=
"setuptools.build_meta"
setup.py
0 → 100644
View file @
2cdc29f1
import
sys
try
:
from
skbuild
import
setup
except
ImportError
:
print
(
'Please update pip, you need pip 10 or greater,
\n
'
' or you need to install the PEP 518 requirements in pyproject.toml yourself'
,
file
=
sys
.
stderr
)
raise
setup
(
name
=
"fresnel"
,
version
=
"0.1"
,
packages
=
[
'fresnel'
],
#package_dir={'': 'source/'},
cmake_install_dir
=
'fresnel/'
)
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