File: setup.cfg

package info (click to toggle)
python-lsp-rope 0.1.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 340 kB
  • sloc: python: 2,319; makefile: 2
file content (56 lines) | stat: -rw-r--r-- 1,120 bytes parent folder | download
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[metadata]
name = pylsp-rope
version = 0.1.17
author = Lie Ryan
author_email = lie.1296@gmail.com
url = https://github.com/python-rope/pylsp-rope
description = Extended refactoring capabilities for Python LSP Server using Rope.
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT license
classifiers =
    Programming Language :: Python
    Operating System :: OS Independent
    Development Status :: 2 - Pre-Alpha
    Intended Audience :: Developers
    Topic :: Text Editors :: Integrated Development Environments (IDE)
    Topic :: Software Development
    License :: OSI Approved :: MIT License


[options]

packages = find:

install_requires = 
    python-lsp-server
    rope>=0.21.0
    typing-extensions; python_version < '3.10'

python_requires = >= 3.6

[options.packages.find]
exclude =
    test*

[options.entry_points]
pylsp = pylsp_rope = pylsp_rope.plugin


[options.extras_require]
# extras local dev environment
dev =
    build
    pytest
    twine


# extras for CI test runner
test =
    flake8
    pytest
    pytest-cov


[pycodestyle]
max-line-length = 88