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

Custom pip registry to simplify deployment

parent 1e02cdc7
Branches
Tags
No related merge requests found
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}',
)
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