forked from Photon-HDF5/phconvert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (41 loc) · 1.74 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
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
import versioneer
project_name = 'phconvert'
# Metadata
long_description = """
phconvert
==========
Convert Beker&Hickl, PicoQuant and other formats used in single-molecule
spectroscopy (e.g. smFRET, FCS, PIFE) to
`Photon-HDF5 <http://photon-hdf5.org/>`_ files.
Easy install via conda with::
conda install phconvert -c conda-forge
See `Release Notes <https://github.com/Photon-HDF5/phconvert/releases>`__.
"""
setup(name = project_name,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author = 'Antonino Ingargiola',
author_email = '[email protected]',
url = 'http://photon-hdf5.github.io/phconvert/',
download_url = 'http://photon-hdf5.github.io/phconvert/',
license = 'MIT',
description = ("Convert Beker&Hickl, PicoQuant and other formats to Photon-HDF5."),
long_description = long_description,
platforms = ('Windows', 'Linux', 'Mac OS X'),
classifiers=['Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
],
install_requires = ['numpy', 'setuptools', 'tables'],
python_requires='>=3.5',
packages=find_packages('.'),
package_data = {'': ['specs/*.json', 'v04/specs/*.json']},
keywords = ('single-molecule FRET smFRET biophysics file-format HDF5 '
'Photon-HDF5'),
)