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

Custom pip registry to simplify deployment

parent 0f0c203b
No related merge requests found
from setuptools import setup 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_walberla', setup(name='pystencils_walberla',
version=get_current_dev_version_from_git(),
description='pystencils code generation for waLBerla apps', description='pystencils code generation for waLBerla apps',
author='Martin Bauer', author='Martin Bauer',
license='AGPLv3', license='AGPLv3',
...@@ -9,5 +15,4 @@ setup(name='pystencils_walberla', ...@@ -9,5 +15,4 @@ setup(name='pystencils_walberla',
packages=['pystencils_walberla'], packages=['pystencils_walberla'],
install_requires=['pystencils[alltrafos]', 'jinja2'], install_requires=['pystencils[alltrafos]', 'jinja2'],
package_data={'pystencils_walberla': ['templates/*']}, package_data={'pystencils_walberla': ['templates/*']},
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