-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
47 lines (41 loc) · 1.09 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
45
46
47
[metadata]
name = csworkshop
version = 0.0.3
description = CS Design Studio
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/tyleryep/workshop
author = Tyler Yep
author_email = tyep@cs.stanford.edu
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
install_requires =
bitarray
prettyprinter
tqdm
[options.package_data]
cs = py.typed
[options.packages.find]
exclude = explore, explore.*, utils, tests, tests.*, tests.*.*
[mypy]
strict = True
warn_unreachable = True
disallow_any_unimported = True
extra_checks = True
enable_error_code = explicit-override,ignore-without-code
# Mypy checks that are too strict to enable:
# disallow_any_expr = True
# disallow_any_decorated = True
# disallow_any_explicit = True
[mypy-explore.*]
ignore_errors = True