forked from dfci/pythologist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (64 loc) · 2.42 KB
/
setup.py
File metadata and controls
66 lines (64 loc) · 2.42 KB
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
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',
version='1.3.0',
test_suite='nose2.collector.collector',
description='inForm PerkinElmer Reader - Python interface to read outputs of the PerkinElmer inForm software;\
Pythologist-image-utilities: Functions to assist in working with image files;\
Pythologist-schemas: Check the assumptions of inputs for pythologist ahead of reading',
long_description=long_description,
url='https://github.com/jason-weirather/pythologist',
author='Jason L Weirather',
author_email='jason.weirather@gmail.com',
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',
'pythologist_reader',
'pythologist_image_utilities',
'pythologist_schemas',
'schema_data',
'schema_data.inputs',
'schema_data.inputs.platforms.InForm'],
install_requires=['pandas>=1.2.2',
'numpy',
'scipy',
'h5py',
'imageio',
'Pillow',
'xmltodict',
'scikit-image>=0.16.2',
'imagecodecs',
'tifffile>=2019.7.26',
'sklearn',
'jsonschema',
'importlib_resources',
'XlsxWriter',
'openpyxl',
'plotnine',
'IPython',
'umap',
'tables'
],
extras_require = {
'test': ["pythologist-test-images"]
},
include_package_data = True,
entry_points = {
'console_scripts':['pythologist-stage=pythologist_schemas.cli.stage_tool:cli',
'pythologist-templates=pythologist_schemas.cli.template_tool:cli',
'pythologist-run=pythologist_schemas.cli.run_tool:cli',
'pythologist-report=pythologist_schemas.cli.report_tool:cli'
]
},
)