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
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import exists, dirname, realpath
from setuptools import setup
import sys
author = u"Paul Müller"
authors = [author]
description = 'A multiple-tau algorithm for Python/NumPy'
name = 'multipletau'
year = "2012"
sys.path.insert(0, realpath(dirname(__file__))+"/"+name)
from _version import version
setup(
name=name,
author=author,
author_email='dev@craban.de',
url='https://github.com/FCS-analysis/multipletau',
version=version,
packages=[name],
package_dir={name: name},
license="BSD (3 clause)",
description=description,
long_description=open('README.rst').read() if exists('README.rst') else '',
install_requires=["numpy >= 1.5.1"],
keywords=["multiple tau", "fluorescence correlation spectroscopy"],
setup_requires=['pytest-runner'],
tests_require=["pytest"],
classifiers= [
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Visualization',
'Intended Audience :: Science/Research'
],
platforms=['ALL']
)
|