-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
41 lines (40 loc) · 1.19 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import find_packages, setup
setup(
name='amlrt_project',
version='3.2.0',
packages=find_packages(include=['amlrt_project', 'amlrt_project.*']),
python_requires='>=3.11',
install_requires=[
'aim==3.18.1; os_name!="nt"',
'comet-ml==3.39.3',
'flake8==4.0.1',
'flake8-docstrings==1.6.0',
'gitpython==3.1.27',
'jupyter==1.0.0',
'jinja2==3.1.2',
'myst-parser==2.0.0',
'omegaconf==2.3.0',
'orion>=0.2.4.post1',
'pyyaml==6.0',
'pytest==7.1.2',
'pytest-cov==3.0.0',
'pytorch_lightning==2.2.1',
'pytype==2024.2.27',
'sphinx==7.2.6',
'sphinx-autoapi==3.0.0',
'sphinx-rtd-theme==1.3.0',
'sphinxcontrib-napoleon==0.7',
'sphinxcontrib-katex==0.9.9',
'tensorboard==2.16.2',
'tqdm==4.64.0',
'torch==2.2.1',
'torchvision==0.17.1',
],
entry_points={
'console_scripts': [
'amlrt_project_train=amlrt_project.train:main',
'amlrt_project_eval=amlrt_project.evaluate:main',
'amlrt_project_merge_configs=amlrt_project.utils.config_utils:main'
],
}
)