|
2 | 2 | name = "check_shapes"
|
3 | 3 | version = "0.1.0"
|
4 | 4 | description = "A library for annotating and checking the shapes of tensors."
|
5 |
| -authors = [ "Jesper Nielsen <[email protected]>", "The GPflow Contributors"] |
| 5 | +authors = [ |
| 6 | + "Jesper Nielsen <[email protected]>", |
| 7 | + "The GPflow Contributors", |
| 8 | +] |
| 9 | +license = "Apache-2.0" |
| 10 | + |
| 11 | +readme = "README.md" |
| 12 | +homepage = "https://gpflow.github.io/check_shapes" |
| 13 | +repository = "https://github.com/GPflow/check_shapes" |
| 14 | +documentation = "https://gpflow.github.io/check_shapes" |
| 15 | + |
| 16 | +classifiers = [ |
| 17 | + "Development Status :: 4 - Beta", |
| 18 | + "Intended Audience :: Developers", |
| 19 | + "Intended Audience :: Education", |
| 20 | + "Intended Audience :: Science/Research", |
| 21 | + "License :: OSI Approved :: Apache Software License", |
| 22 | + "Programming Language :: Python :: 3", |
| 23 | + "Programming Language :: Python :: 3.7", |
| 24 | + "Programming Language :: Python :: 3.8", |
| 25 | + "Programming Language :: Python :: 3.9", |
| 26 | + "Programming Language :: Python :: 3.10", |
| 27 | + "Topic :: Scientific/Engineering", |
| 28 | + "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| 29 | + "Topic :: Software Development :: Debuggers", |
| 30 | + "Typing :: Typed", |
| 31 | +] |
6 | 32 |
|
7 | 33 | [tool.poetry.dependencies]
|
8 | 34 | python = ">=3.7,<3.11"
|
@@ -43,15 +69,11 @@ python_version = "3.7"
|
43 | 69 | show_error_codes = true
|
44 | 70 | # First we turn on *all the checks*, and then we turn off those that are too annoying.
|
45 | 71 | strict = true
|
46 |
| -# disallow_subclassing_any = false |
47 |
| -# disallow_untyped_calls = false |
48 | 72 | disallow_untyped_decorators = false
|
49 |
| -# ; This is needed because version 1.20.0 of NumPy introduces typing, so some ignores are necessary / |
50 |
| -# ; unnecessary depending on the version of numpy: |
| 73 | +# This is needed because version 1.20.0 of NumPy introduces typing, so some ignores are necessary / |
| 74 | +# unnecessary depending on the version of numpy: |
51 | 75 | warn_unused_ignores = false
|
52 | 76 |
|
53 |
| - |
54 |
| - |
55 | 77 | [[tool.mypy.overrides]]
|
56 | 78 | module = [
|
57 | 79 | "tensorflow.*",
|
|
0 commit comments