-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (54 loc) · 1.79 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Script for installing xfcs.
To install, run:
python setup.py install
"""
# Modified from https://github.com/pypa/sampleproject/blob/master/setup.py
from setuptools import setup, find_packages
from codecs import open
from os import path
import sys
from xfcs.version import VERSION
if sys.argv[-1] == 'setup.py':
print("To install xfcs, run 'python setup.py install'\n")
if sys.version_info[:3] < (3, 5):
print('xfcs requires Python 3.5 or later ({}.{}.{} detected)'.format(*sys.version_info[:3]))
sys.exit(-1)
here = path.abspath(path.dirname(__file__))
setup(
name='xfcs',
version=VERSION,
description='Extract Flow Cytometry data from FCS files version 3+.',
long_description=open('README.rst').read(),
url='https://github.com/j4c0bs/xfcs',
author='Jeremy Jacobs',
author_email='pub@j4c0bs.net',
license='BSD',
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities'
],
keywords='FCS FCS3.0 FCS3.1 flow cytometry',
packages=find_packages(exclude=['docs']),
python_requires='>3.5',
install_requires=['numpy', 'pandas'],
extras_require={},
package_data={'':['LICENSE.txt', 'MANIFEST.in', 'docs/*']},
data_files=[],
entry_points={
'console_scripts':[
'xfcs=xfcs.commands:main'
],
},
)