-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (28 loc) · 955 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (28 loc) · 955 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
27
28
29
from setuptools import setup, find_namespace_packages
setup(
version="0.1.0",
name="ulib",
long_description="Unsupervised pretraining library.",
license="MIT",
url="https://github.com/ivan-chai/unsupervised-pretraining",
author="Ivan Karpukhin, Anton Ber, Ilya Basharov, Vyacheslav Voiteshonok",
author_email="karpuhini@yandex.ru, berantonmsu@gmail.com, ilya.basharov.98@mail.ru, vsvoiteshonok1@gmail.com",
packages=find_namespace_packages(where="src"),
python_requires='>=3.8',
package_dir={"": "src"},
entry_points={
"console_scripts": [
"ulib_evaluate = unsupervised_pretraining.scripts.evaluate:main"
]
},
install_requires=[
"torch==1.10.0",
"torchvision==0.11.1",
"pytorch_lightning==1.5.1",
"torchmetrics==0.6.0",
"hydra-core==1.1.1",
"omegaconf==2.1.1",
"albumentations==1.1.0",
"pytest==6.2.5"
]
)