-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 800 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (28 loc) · 800 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
25
26
27
28
29
30
from setuptools import find_packages, setup
setup(
name="simplereg",
version="0.1.0",
description="3D manual registration app for NIfTI medical images",
long_description="SimpleReg is a manual 3D registration application for medical images.",
long_description_content_type="text/plain",
package_dir={"": "src"},
packages=find_packages(where="src"),
include_package_data=True,
install_requires=[
"PyQt6",
"pyqtgraph",
"numpy",
"scipy",
"nibabel",
"scikit-image",
"transforms3d",
"matplotlib",
],
entry_points={
"console_scripts": [
"simplereg=simplereg.__main__:main",
"simplereg_apply=simplereg.apply:main",
],
},
python_requires=">=3.10",
)