Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Apr 18, 2024
1 parent 52da5ca commit 74dc42e
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,8 @@ classifiers = [
#dependencies = [] # todo: consider adding
dynamic = ["version"]

[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["gluonts*"] # package names should match these glob patterns (["*"] by default)
#exclude = ["my_package.tests*"] # exclude packages matching these glob patterns (empty by default)
namespaces = true # set false to disable scanning PEP 420 namespaces (true by default)
include-package-data = true # to include package data (false by default)
[tool.setuptools]
package-dir = {"" = "src"} # directory containing all the packages (e.g. src/mypkg1, src/mypkg2)

[project.urls]
documentation = " https://ts.gluon.ai/stable/"
Expand Down Expand Up @@ -71,6 +67,7 @@ make-summary-multi-line = true
wrap-descriptions = 79

[tool.mypy]
plugins = ["pydantic.mypy"]
ignore_missing_imports = true
allow_redefinition = true
follow_imports = "silent"
Expand All @@ -88,7 +85,4 @@ known_third_party = [
"lightning",
]
line_length = 79
profile = "black"

[tool.mypy]
plugins = ["pydantic.mypy"]
profile = "black"

0 comments on commit 74dc42e

Please # to comment.