Skip to content
Snippets Groups Projects
Commit 904ab784 authored by Martin Bauer's avatar Martin Bauer
Browse files

Custom pip registry to simplify deployment

parent 41f3e83a
No related branches found
No related tags found
No related merge requests found
Source diff could not be displayed: it is too large. Options to address this: view the blob.
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='lbmpy', setup(name='lbmpy',
version=get_current_dev_version_from_git(),
description='Code Generation for Lattice Boltzmann Methods', description='Code Generation for Lattice Boltzmann Methods',
author='Martin Bauer', author='Martin Bauer',
license='AGPLv3', license='AGPLv3',
...@@ -24,5 +30,4 @@ setup(name='lbmpy', ...@@ -24,5 +30,4 @@ setup(name='lbmpy',
'interactive': ['pystencils[interactive]', 'scipy', 'scikit-image', 'cython'], 'interactive': ['pystencils[interactive]', 'scipy', 'scikit-image', 'cython'],
'doc': ['pystencils[doc]'], 'doc': ['pystencils[doc]'],
}, },
version_format='{tag}.dev{commits}+{sha}',
) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment