-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
34 lines (30 loc) · 866 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
32
33
34
[metadata]
name = edutorch
version = 0.0.3
description = Rewritten PyTorch framework designed to help you learn AI/ML
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/tyleryep/edutorch
author = Tyler Yep
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.12
[options]
packages = find:
python_requires = >=3.12
include_package_data = True
[options.package_data]
edutorch = py.typed
[mypy]
strict = True
warn_unreachable = True
disallow_any_unimported = True
extra_checks = True
enable_error_code = explicit-override,ignore-without-code
warn_return_any = False