-
Notifications
You must be signed in to change notification settings - Fork 166
/
pyproject.toml
112 lines (100 loc) · 2.45 KB
/
pyproject.toml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[project]
name = 'rope'
description = 'a python refactoring library...'
readme = 'README.rst'
requires-python = '>=3.8'
classifiers = [
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Environment :: X11 Applications',
'Environment :: Win32 (MS Windows)',
'Environment :: MacOS X',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development',
]
version = '1.13.0'
dependencies = ['pytoolconfig[global] >= 1.2.2']
[[project.authors]]
name = 'Ali Gholami Rudi'
email = '[email protected]'
[[project.maintainers]]
name = 'Lie Ryan'
email = '[email protected]'
[project.license]
text = 'LGPL-3.0-or-later'
[project.urls]
Source = 'https://github.com/python-rope/rope'
Documentation = 'https://rope.readthedocs.io/'
[project.optional-dependencies]
doc = [
'pytoolconfig[doc]',
"sphinx>=4.5.0",
"sphinx-autodoc-typehints>=1.18.1",
"sphinx-rtd-theme>=1.0.0",
]
dev = [
'pytest>=7.0.1',
'pytest-cov>=4.1.0',
'pytest-timeout>=2.1.0',
'build>=0.7.0',
'pre-commit>=2.20.0',
]
release = [
'toml>=0.10.2',
'twine>=4.0.2',
'pip-tools>=6.12.1',
]
[tool.setuptools]
packages = [
'rope',
'rope.base',
'rope.base.oi',
'rope.base.oi.type_hinting',
'rope.base.oi.type_hinting.providers',
'rope.base.oi.type_hinting.resolvers',
'rope.base.utils',
'rope.contrib',
'rope.contrib.autoimport',
'rope.refactor',
'rope.refactor.importutils',
]
[tool.black]
target-version = [
'py38',
'py39',
'py310',
'py311',
'py312',
]
include = 'rope/.*\.pyi?$'
force-exclude = 'ropetest|rope/base/prefs.py'
[tool.coverage.report]
exclude_also = [
"if TYPE_CHECKING:",
"raise NotImplementedError()",
]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
testpaths = "ropetest"
python_files = [
"*test.py",
"__init__.py",
]
markers = [
"time_limit: sets a maximum amount of time the test can run",
]
[build-system]
requires = [
'setuptools',
]
build-backend = 'setuptools.build_meta'