13 lines
406 B
Python
13 lines
406 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='priorConditionedAnneling',
|
|
version='0.0.1',
|
|
url='https://git.dominik-roth.eu/dodox/PriorConditionedAnnealing',
|
|
author='Dominik Roth,
|
|
# author_email='author@gmail.com',
|
|
# description='Description of my package',
|
|
packages=['priorConditionedAnnealing'],
|
|
# install_requires=['numpy >= 1.11.1', 'matplotlib >= 1.5.1'],
|
|
)
|