create python package

This commit is contained in:
2021-07-12 16:16:58 +02:00
parent 4ec8b766cd
commit ffd7c23ca4
3 changed files with 14 additions and 2 deletions

1
install_package.sh Executable file
View File

@@ -0,0 +1 @@
pip install -U .

10
requirements.txt Normal file
View File

@@ -0,0 +1,10 @@
numpy>=1.21.0
open3d>=0.13.0
Pillow>=8.3.1
probreg>=0.3.4
scikit-image>=0.18.2
scikit-learn>=0.24.2
scipy>=1.7.0

View File

@@ -1,4 +1,5 @@
from setuptools import setup
from setuptools import setup, find_namespace_packages
setup(name='situr',
version='0.1',
description='A package to register situ images',
@@ -6,5 +7,5 @@ setup(name='situr',
author='Hannes F. Kuchelmeister',
author_email='hannes@kuchelmeister.org',
license='MIT',
packages=['situr'],
packages=find_namespace_packages(include=['situr.*']),
zip_safe=False)