-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
26 lines (25 loc) · 845 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="eagle-loss",
version="0.1.0",
packages=find_packages(),
install_requires=[
"torch<2.5.0",
"torchvision",
"Pillow",
],
python_requires=">=3.11",
author="Yipeng Sun",
author_email="yipeng.sun@fau.de",
description="An Edge-Aware Gradient Localization Enhanced Loss for CT Image Reconstruction",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache License 2.0",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
)