-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 936 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (25 loc) · 936 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
from setuptools import setup, find_packages
import os
#Read requirements
def read_requirements():
with open('requirements.txt') as f:
lines = f.read().splitlines()
return lines
setup(
name='pathbench',
version='0.1.0',
description='PathBench-MIL: A flexible, comprehensive benchmarking / AutoML framework for MIL models in Histopathology',
long_description=open('README.md').read() if os.path.exists('README.md') else '',
long_description_content_type='text/markdown',
author='S Brussee',
author_email='s.brussee@lumc.nl',
url='https://github.com/sbrussee/PathBench-MIL',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.10',
],
install_requires=read_requirements()
)