forked from BodenmillerGroup/imctoolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.54 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.54 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
#!/usr/bin/env python
from setuptools import find_packages, setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
install_requires = []
with open(path.join(this_directory, 'requirements.txt'), encoding='utf-8') as f:
for line in f:
line = line.strip()
if not line.startswith('#'):
install_requires.append(line)
setup(
name='imctoolkit',
use_scm_version={'write_to': "imctoolkit/_version.py"},
description='Python package for processing segmented multi-channel images',
long_description=long_description,
long_description_content_type='text/markdown',
author='Jonas Windhager',
author_email='jonas.windhager@uzh.ch',
url='https://github.com/BodenmillerGroup/imctoolkit',
packages=find_packages(),
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Image Processing',
],
license='MIT',
python_requires='>=3.8',
install_requires=install_requires,
setup_requires=['setuptools_scm'],
extras_require={
'all': ['anndata', 'fcswrite', 'networkx', 'opencv-python', 'python-igraph'],
},
)