-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (38 loc) · 1.37 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
from setuptools import setup, find_packages
from codecs import open
from os import path
this_folder = path.abspath(path.dirname(__file__))
with open(path.join(this_folder,'README.md'),encoding='utf-8') as inf:
long_description = inf.read()
setup(
name='pythologist-reader',
test_suite='nose2.collector.collector',
version='1.1.1',
description='inForm PerkinElmer Reader - Python interface to read outputs of the PerkinElmer inForm software',
long_description=long_description,
url='https://github.com/jason-weirather/pythologist-reader',
author='Jason L Weirather',
author_email='[email protected]',
license='Apache License, Version 2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: Apache Software License'
],
keywords='bioinformatics',
packages=['pythologist_reader'],
install_requires=['xmltodict',
'pandas>=1.2.2',
'scikit-image>=0.18.0',
'numpy',
'scipy',
'h5py',
'tables',
'pythologist>=1.1.0',
'pythologist-image-utilities>=1.0.2'],
extras_require = {
'test': ["pythologist-test-images"],
'mibi': ["mibitracker-client>=1.2.6"]
},
)