forked from python-lsp/python-lsp-server
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
executable file
·12 lines (9 loc) · 426 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·12 lines (9 loc) · 426 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python3
# Copyright 2017-2020 Palantir Technologies, Inc.
# Copyright 2021- Python Language Server Contributors.
fromsetuptoolsimportsetup, find_packages
if__name__=="__main__":
setup(
name="python-lsp-server", # to allow GitHub dependency tracking work
packages=find_packages(exclude=["contrib", "docs", "test", "test.*"]), # https://github.com/pypa/setuptools/issues/2688
)