-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (44 loc) · 1.51 KB
/
setup.py
File metadata and controls
47 lines (44 loc) · 1.51 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
from setuptools import setup, find_packages
from odmammogram import __version__
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name="odmammogram",
version=__version__,
url="https://github.com/RyanZurrin/odmammogram",
author="Ryan Zurrin, Daniel Haehn",
author_email="Ryan Zurrin <ryan.zurrin001@umb.edu>, Daniel Haehn <daniel.haehn@umb.edu>",
description="Outlier Detection for Mammograms (ODM) is a Python package for medical image analysis...",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3.9",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
],
install_requires=[
"matplotlib~=3.6.2",
"mahotas~=1.4.13",
"pyod",
"scikit-learn~=1.2.0",
"scikit-image==0.19.2",
"keras",
"hyperopt~=0.2.7",
"pydicom~=2.3.1",
"gdcm",
"pylibjpeg[all]",
"numpy~=1.23.5",
"tqdm~=4.65.0",
"Pillow~=9.3.0",
"pandas~=1.5.2",
"statsmodels~=0.13.5",
"tensorflow~=2.12.0",
"future~=0.18.3",
"setuptools~=65.6.3",
],
)