-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 923 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 923 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
30
31
32
33
from setuptools import setup
# Read long description from the README file
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='pacbb',
version='0.1.2',
description='PAC Bayes Bound toolset',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Yauhenii/pacbb',
author='Yauheni Mardan, Maksym Tretiakov',
author_email='yauhenmardan@gmail.com',
license='MIT',
packages=['core'],
install_requires=[
'torch>=2.2.1',
'numpy>=1.26.4',
'torchvision>=0.17.1',
'tqdm>=4.66.2',
'lightning>=2.2.1',
'wandb>=0.16.6',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.11',
zip_safe=False,
)