-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 863 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
with open('requirements.txt','r') as f:
requires = f.read().splitlines()
f.close()
setup(name='falsecolor',
packages = ['falsecolor'],
version='1.1.4.9',
license = 'GNU Affero General Public License v3.0',
description='Methods for H&E pseudo coloring of grayscale fluorescent images',
author='Robert Serafin',
author_email='serrob23@uw.edu',
url = 'https://github.com/serrob23/FalseColor',
download_url = 'https://github.com/serrob23/falsecolor/releases/download/v1.1.4.9/falsecolor-1.1.4.9.tar.gz',
keywords = ['Image Analysis',
'Fluorescence Microscopy',
'Color Translation',
'Virtual Staining',
'Histology'],
install_requires = requires,
python_requires='>=3.6',
)