-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (34 loc) · 1.5 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
# parse_requirements() returns generator of pip.req.InstallRequirement objects
setup(
name='pydeepimagej',
packages=find_packages(include=['pydeepimagej', 'pydeepimagej.*']),
package_data={'rdf_template': ['yaml/bioimage.io.config_template.yaml']},
version='2.4',
license='BSD 2-Clause License',
description='Python package to export TensorFlow models as DeepImageJ bundled models',
long_description=long_description,
long_description_content_type='text/markdown',
author="E. Gomez-de-Mariscal, C. Garcia-Lopez-de-Haro, W. Ouyang, L. Donati, E- Lundberg, M. Unser, A. Munoz-Barrutia, D. Sage.",
url='https://deepimagej.github.io/deepimagej/',
download_url='https://github.com/deepimagej/pydeepimagej/archive/v1.0.0.tar.gz',
keywords=['Fiji', 'ImageJ', 'deepImageJ', 'Deep Learning', 'Image processing', 'bioimage.io', 'BioImage Model Zoo'],
python_requires='>=3.0',
install_requires=[
'numpy',
'scikit-image==0.17.2',
'ruamel.yaml',
'datetime'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
],
)