summaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 19:55:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 19:55:48 +0000
commit8be448d3881909fb0ce4b033cad71aa7575de0aa (patch)
treeda33caff06645347a08c3c9c56dd703e4acb5aa3 /setup.cfg
parentInitial commit. (diff)
downloadlsprotocol-8be448d3881909fb0ce4b033cad71aa7575de0aa.tar.xz
lsprotocol-8be448d3881909fb0ce4b033cad71aa7575de0aa.zip
Adding upstream version 2023.0.0.upstream/2023.0.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg35
1 files changed, 35 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..feb9e5e
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,35 @@
+[metadata]
+name = generator
+version = 2023.0.0a3
+author = Microsoft Corporation
+author_email = lsprotocol-help@microsoft.com
+description = Generates code for the Language Server Protocol types using the LSP specification.
+long_description = file: README.md
+long_description_content_type = text/markdown
+url = https://github.com/microsoft/lsprotocol
+
+[options]
+packages = find:
+package_dir =
+ = .
+
+install_requires =
+ attrs
+ cattrs
+ jsonschema
+ importlib_resources
+
+[options.package_data]
+generator = *.json
+generator.plugins.dotnet = **/*
+
+[options.packages.find]
+exclude =
+ tests
+ packages
+ azure-pipelines
+ .devcontainer
+ .github
+ .vscode
+
+include_package_data = true