This repository was archived by the owner on Apr 25, 2025. It is now read-only.
forked from DeepRegNet/DeepReg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (55 loc) · 2.06 KB
/
Copy pathsetup.py
File metadata and controls
58 lines (55 loc) · 2.06 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
from setuptools import find_packages, setup
with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="deepreg",
packages=find_packages(exclude=["test", "test.unit", "test.output"]),
include_package_data=True,
version="0.0.0",
license="apache-2.0",
description="DeepReg is a freely available, community-supported open-source toolkit for research and education in medical image registration using deep learning.",
long_description=long_description,
long_description_content_type="text/markdown",
author="DeepReg Development Team and Community",
author_email="deepregnet@gmail.com",
url="http://deepreg.net/",
download_url="",
keywords=[
"Deep Learning",
"Image Fusion",
"Medical Image Registration",
"Neural Networks",
],
zip_safe=False,
install_requires=requirements,
entry_points={
"console_scripts": [
"deepreg_train=deepreg.train:main",
"deepreg_predict=deepreg.predict:main",
"deepreg_warp=deepreg.warp:main",
"deepreg_vis=deepreg.vis:main",
"deepreg_download=deepreg.download:main",
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: GPU",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development",
],
)