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