-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·35 lines (33 loc) · 1.3 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
# -*- coding: utf-8 -*-
"""
Created on Thu Sep 07 18:54:32 2017
@author: Michael Rosenthal
"""
import setuptools
from distutils.core import setup
setup (
name='SIMBA3D',
version='3.0.0',
author='Michael M. Rosenthal',
author_email='[email protected]',
url='',
keywords='chromatin',
license='MIT',
description='Structure Inference from Multiscale BAyes in 3 Dimensions (SIMBA3D)',
long_description=open('README.md').read(),
packages=setuptools.find_packages(exclude=["*.tests","*.tests.*","tests.*","tests"]),
entry_points={'console_scripts' : [
#'simba3d=simba3d.simba3d_taskrun:main',
'simba3d=simba3d.simba3d_taskrun_SOLO:main',
'simba3d-result-disp=simba3d.display_results:main',
'simba3d-task-disp=simba3d.display_task:main',
'simba3d-convertion=simba3d.convertion_tool:main',
'simba3d-print=simba3d.print_result_summary:main',
'simba3d-initialize=simba3d.initialize_curve:main'
]},
install_requires=[ 'numpy',
'scipy'
],
extras_require={ 'ploting_tools':'matplotlib'
}
)