-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.cfg
44 lines (39 loc) · 1.28 KB
/
setup.cfg
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
42
43
44
[metadata]
name = gradsflow
version = attr: gradsflow.__version__
author = Aniket Maurya
author_email = aniket@gradsflow.com
description = An open-source AutoML Library based on PyTorch
long_description = file: README.md, LICENSE.md
long_description_content_type = text/markdown
url = https://github.com/gradsflow/gradsflow
project_urls =
Bug Tracker = https://github.com/gradsflow/gradsflow/issues
Documentation = https://docs.gradsflow.com
Source Code = https://github.com/gradsflow/gradsflow
classifiers =
; How mature is this project? Common values are
; 3 - Alpha, 4 - Beta, 5 - Production/Stable
Development Status :: 4 - Beta
Intended Audience :: Developers
Programming Language :: Python :: 3
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
keywords = AutoML, Pytorch, Deep Learning
[options]
packages = find:
python_requires = >=3.8
install_requires =
torch >=1.13.1
torchvision
ray[default,tune] >=2.2.0
timm>=0.6.12
rich>=13.3.1
smart_open >=5.1,<=5.2.1
torchmetrics >=0.11.1
lightning >=1.9.2
[options.extras_require]
dev = codecarbon >=1.2.0; wandb; tensorboard
test = pytest; coverage; pytest-sugar; pytest-randomly
[options.packages.find] #optional
exclude=tests, docs, examples