-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (23 loc) · 966 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import find_packages, setup
setup(
name='tripletdim',
version='0',
packages=find_packages(),
package_dir={'': 'src'},
entry_points = {
'console_scripts': [
'embedding=tripletdim.experiment.embedding:embed_all_dimension_cli',
'hypotest=tripletdim.experiment.hypothesis_test:dimension_hypothesis_test_cli',
'hypotest-error=tripletdim.experiment.hypothesis_test:measure_test_error_cli',
'make-jobs=tripletdim.experiment.make_jobs:main',
'fetch-datasets=tripletdim.data.datasets:fetch_datasets_cli',
'plot-simulations=tripletdim.plot.plot_simulations:main',
'plot-tripletscore=tripletdim.plot.plot_triplet_score:main',
]
},
url='',
license='GPLv3',
author='David-Elias Künstle',
author_email='[email protected]',
description='Experiment code for estimating the dimension from triplets'
)