Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pystencils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pycodegen
pystencils
Commits
f780194d
Commit
f780194d
authored
6 years ago
by
Martin Bauer
Browse files
Options
Downloads
Patches
Plain Diff
Custom pip registry to simplify deployment
parent
1e02cdc7
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+6
-2
6 additions, 2 deletions
setup.py
with
6 additions
and
2 deletions
setup.py
+
6
−
2
View file @
f780194d
import
os
import
sys
from
setuptools
import
setup
,
find_packages
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
'
,
setup
(
name
=
'
pystencils
'
,
version
=
get_current_dev_version_from_git
(),
description
=
'
Python Stencil Compiler based on sympy as numpy
'
,
description
=
'
Python Stencil Compiler based on sympy as numpy
'
,
author
=
'
Martin Bauer
'
,
author
=
'
Martin Bauer
'
,
license
=
'
AGPLv3
'
,
license
=
'
AGPLv3
'
,
...
@@ -27,6 +33,4 @@ setup(name='pystencils',
...
@@ -27,6 +33,4 @@ setup(name='pystencils',
},
},
tests_require
=
[
'
pytest
'
,
'
pytest-cov
'
,
'
pytest-xdist
'
,
'
flake8
'
],
tests_require
=
[
'
pytest
'
,
'
pytest-cov
'
,
'
pytest-xdist
'
,
'
flake8
'
],
python_requires
=
"
>=3.6
"
,
python_requires
=
"
>=3.6
"
,
setup_requires
=
[
'
very-good-setuptools-git-version
'
],
version_format
=
'
{tag}.dev{commits}+{sha}
'
,
)
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment