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
Markus Holzer
pystencils
Commits
558ab66f
Commit
558ab66f
authored
Apr 27, 2021
by
Markus Holzer
Browse files
Added versioneer cmdclass
parent
2449b079
Pipeline
#31760
passed with stage
in 35 minutes and 38 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
558ab66f
...
...
@@ -74,6 +74,12 @@ def cython_extensions(*extensions):
else
:
return
None
def
get_cmdclass
():
cmdclass
=
{
"quicktest"
:
SimpleTestRunner
}
cmdclass
.
update
(
versioneer
.
get_cmdclass
())
return
cmdclass
setuptools
.
setup
(
name
=
'pystencils'
,
description
=
'Speeding up stencil computations on CPUs and GPUs'
,
version
=
versioneer
.
get_version
(),
...
...
@@ -129,7 +135,5 @@ setuptools.setup(name='pystencils',
'randomgen>=1.18'
],
python_requires
=
">=3.6"
,
cmdclass
=
{
'quicktest'
:
SimpleTestRunner
},
cmdclass
=
get_cmdclass
()
)
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