summaryrefslogtreecommitdiffstats
path: root/setup.cfg
blob: feb9e5eef9091747d04d636ecb2eaa389939646a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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