-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
51 lines (41 loc) · 1.35 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
50
51
from distutils.core import setup
import re
VERSIONFILE= "pyfim/__init__.py"
verstrline = open(VERSIONFILE, "rt").read()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
mo = re.search(VSRE, verstrline, re.M)
if mo:
verstr = mo.group(1)
else:
raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))
setup(
name='pyfim',
version=verstr,
packages=['pyfim'],
license='GNU GPL V3',
description='Read and analyse FIMTrack data.',
long_description=open('README.md').read(),
url = 'https://github.com/schlegelp/pyfim',
author='Philipp Schlegel',
author_email = '[email protected]',
keywords='FIMTrack analysis FIM imaging',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=[
"numpy>=1.13.0",
"matplotlib>=2.0.0",
"pandas>=0.22.0",
"tqdm>=4.14.0",
"peakutils",
],
python_requires='>=3.3',
)