-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 898 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
27
28
29
import setuptools
# read the contents of requirements.txt
with open('./requirements.txt') as f:
requirements = f.read().splitlines()
setuptools.setup(
name = 'adrd',
version = '0.0.1',
author = 'Chonghua Xue',
author_email = '[email protected]',
url = 'https://github.com/vkola-lab/adrd_tool/',
# description = '',
packages = setuptools.find_packages(),
# package_data = {'adrd': [
# 'ckpt/ckpt_080823.pt',
# 'ckpt/ckpt_img_072523.pt',
# 'ckpt/dynamic_calibrated_classifier_073023.pkl',
# 'ckpt/static_calibrated_classifier_073023.pkl',
# ]},
python_requires = '>=3.11',
classifiers = [
'Environment :: GPU :: NVIDIA CUDA',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
install_requires = requirements,
)