forked from tritemio/niconverter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 992 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
25
26
from setuptools import setup
import versioneer
setup(
name = 'niconverter',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author = 'Antonino Ingargiola',
author_email = 'tritemio@gmail.com',
url = 'https://github.com/tritemio/niconverter',
download_url = 'https://github.com/tritemio/niconverter',
install_requires = ['phconvert', 'tqdm', 'numba'],
license = 'MIT',
description = ("Convert 48-spot smFRET data from NI-FGPA to Photon-HDF5."),
platforms = ('Windows', 'Linux', 'Mac OS X'),
classifiers=['Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering',
],
packages = ['niconverter'],
keywords = ('single-molecule FRET smFRET biophysics file-format HDF5 '
'Photon-HDF5')
)