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 52 53
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# To create a distribution package for pip or easy-install:
# python setup.py sdist
from os.path import exists, dirname, realpath
from setuptools import setup
import codecs
import sys
author = u"Paul Müller"
authors = [author]
description = 'A multiple-tau algorithm for Python/NumPy.'
name = 'multipletau'
year = "2013"
sys.path.insert(0, realpath(dirname(__file__))+"/"+name)
try:
from _version import version
except:
version = "unknown"
if __name__ == "__main__":
setup(
name=name,
author=author,
author_email='paul.mueller@biotec.tu-dresden.de',
url='https://github.com/FCS-analysis/multipletau',
version=version,
packages=[name],
package_dir={name: name},
license="BSD (3 clause)",
description=description,
long_description=codecs.open('README.rst','r','utf-8').read() if exists('README.rst') else '',
install_requires=["NumPy >= 1.5.1"],
keywords=["multiple", "tau", "FCS", "correlation", "spectroscopy",
"fluorescence"],
extras_require={'doc': ['sphinx']},
setup_requires=['pytest-runner'],
tests_require=["pytest"],
classifiers= [
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering :: Visualization',
'Intended Audience :: Science/Research'
],
platforms=['ALL']
)
|