diff --git a/pyproject.toml b/pyproject.toml --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,12 @@ description = "Version Control System Se authors = [ {name = "RhodeCode GmbH", email = "support@rhodecode.com"}, ] - +keywords = [ + 'rhodecode', 'mercurial', 'git', 'svn', + 'code review', + 'repo groups', 'ldap', 'repository management', 'hgweb', + 'hgwebdir', 'gitweb', 'serving hgweb', +] license = {text = "GPL V3"} requires-python = ">=3.10" dynamic = ["version", "readme", "dependencies", "optional-dependencies"] @@ -27,6 +32,10 @@ main = "vcsserver.http_main:main" [tool.setuptools] packages = ["vcsserver"] +include-package-data = true + +[tool.setuptools.exclude-package-data] +"vcsserver" = ["__pycache__"] [tool.setuptools.dynamic] readme = {file = ["README.rst"], content-type = "text/rst"} @@ -67,6 +76,7 @@ skip-magic-trailing-comma = false # Like Black, automatically detect the appropriate line ending. line-ending = "auto" + [tool.bumpversion] current_version = "5.4.0" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)"