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
Jonas Plewinski
pystencils
Commits
f780194d
Commit
f780194d
authored
Mar 21, 2019
by
Martin Bauer
Browse files
Custom pip registry to simplify deployment
parent
1e02cdc7
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
f780194d
import
os
import
sys
from
setuptools
import
setup
,
find_packages
sys
.
path
.
insert
(
0
,
os
.
path
.
abspath
(
'..'
))
from
custom_pypi_index.pypi_index
import
get_current_dev_version_from_git
setup
(
name
=
'pystencils'
,
version
=
get_current_dev_version_from_git
(),
description
=
'Python Stencil Compiler based on sympy as numpy'
,
author
=
'Martin Bauer'
,
license
=
'AGPLv3'
,
...
...
@@ -27,6 +33,4 @@ setup(name='pystencils',
},
tests_require
=
[
'pytest'
,
'pytest-cov'
,
'pytest-xdist'
,
'flake8'
],
python_requires
=
">=3.6"
,
setup_requires
=
[
'very-good-setuptools-git-version'
],
version_format
=
'{tag}.dev{commits}+{sha}'
,
)
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