-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (39 loc) · 1.29 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import dirname, realpath, exists
from setuptools import setup
import sys
author = u"Paul Müller"
authors = ["Philipp Rosendahl", author]
name = 'fcswrite'
description = 'Write .fcs files (flow cytometry)'
year = "2016"
long_description = """
This package provides basic functionalities for writing flow cytometry
standard (.fcs) files.
"""
sys.path.insert(0, realpath(dirname(__file__)) + "/" + name)
from _version import version # noqa: E402
setup(
name=name,
author=author,
author_email='[email protected]',
url='https://github.com/DC-analysis/fcswrite',
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.7.0",
],
python_requires=">=3.6",
include_package_data=True,
keywords=["fcs", "flow cytometry", "flow cytometry standard"],
classifiers=['Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Visualization',
'Intended Audience :: Science/Research',
],
platforms=['ALL'],
)