-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.25 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
36
37
38
39
40
from distutils.core import setup
from distutils.extension import Extension
from Cython.Build import cythonize
import numpy as np
import versioneer
extensions = [
Extension(
'depi.depi_cy',
['depi/depi_cy.pyx'],
include_dirs=['.', np.get_include()],
# Uncomment the following line for profiling
# define_macros=[('CYTHON_TRACE', '1')],
)
]
setup(
name="depi",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author='Antonino Ingargiola',
author_email='[email protected]',
url='http://opensmfs.github.io/depi/',
download_url='http://opensmfs.github.io/depi/',
python_requires='>=3.6',
install_requires=['numpy', 'scipy', 'matplotlib', 'cython', 'pandas', 'joblib'],
license='MIT',
description=("Monte-Carlo analysis of single-molecule FRET data including "
"diffusion and photo-physics."),
platforms=('Windows', 'Linux', 'Mac OS X'),
ext_modules=cythonize(
extensions,
# Uncomment the following line for profiling
# compiler_directives = {'linetrace': True, 'binding': True},
),
packages=['depi'],
zip_safe=False,
keywords='Single-molecule FRET smFRET burst-analysis biophysics photo-physics HSE',
)