generated from fastai/nbdev_template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
31 lines (29 loc) · 805 Bytes
/
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
[metadata]
name = model_constructor
version = attr: model_constructor.version.__version__
author = Yasyrev Andrei
author_email = [email protected]
description = Pytorch models constructor.
keywords = pytorch models
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ayasyrev/model_constructor
license = apache2
classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
python_requires = >=3.8, <3.12
[options.packages.find]
where = src
exclude =
tests*
Nbs*
docs*