Making it a package

This commit is contained in:
Dominik Moritz Roth 2023-04-19 19:15:50 +02:00
parent f0b2837315
commit 12565cf1e9
3 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1 @@
from priorConditionedAnnealing.pca import *

12
setup.py Normal file
View File

@ -0,0 +1,12 @@
from setuptools import setup, find_packages
setup(
name='priorConditionedAnneling',
version='0.0.1',
# url='https://github.com/mypackage.git',
# author='Author Name',
# author_email='author@gmail.com',
# description='Description of my package',
packages=['priorConditionedAnnealing'],
# install_requires=['numpy >= 1.11.1', 'matplotlib >= 1.5.1'],
)