Skip to content

Commit

Permalink
tr 2
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo committed Mar 5, 2024
1 parent efe460a commit 4272c81
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,28 @@ include = ['deepecho', 'deepecho.*']
namespaces = false

[tool.setuptools.package-data]
"" = ["AUTHORS.rst", "CONTRIBUTING.rst", "HISTORY.md", "README.md", "*.md", "*.rst", "conf.py", "Makefile", "make.bat", "*.jpg", "*.png", "*.gif"]
"*" = [
"AUTHORS.rst",
"CONTRIBUTING.rst",
"HISTORY.md",
"README.md",
"*.md",
"*.rst",
"conf.py",
"Makefile",
"make.bat",
"*.jpg",
"*.png",
"*.gif"
]
"deepecho" = ["data/demo.csv"]
"tests" = ["*"]

[tool.setuptools.exclude-package-data]
"" = ["*.pyc", "*.pyo", "__pycache__"]

"*" = [
"* __pycache__",
"*.py[co]",
]

[tool.setuptools.dynamic]
version = {attr = 'deepecho.__version__'}
Expand Down

0 comments on commit 4272c81

Please sign in to comment.