-
Notifications
You must be signed in to change notification settings - Fork 389
Expand file tree
/
Copy pathpyproject.toml
More file actions
124 lines (108 loc) · 2.95 KB
/
pyproject.toml
File metadata and controls
124 lines (108 loc) · 2.95 KB
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
113
114
115
116
117
118
119
120
121
122
123
[build-system]
requires = ["hatchling", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[project]
name = "robotframework-ride"
dynamic = ["version", "readme"]
description = "RIDE :: Robot Framework Test Data Editor"
long_description = """
Robot Framework is a generic test automation framework for acceptance
level testing. RIDE is a lightweight and intuitive editor for Robot
Framework test data.
Project: https://github.com/robotframework/RIDE#readme
"""
long_description_content_type = "text/x-rst"
license = "Apache-2.0"
license-files = { paths = ["LICENSE.txt"] }
requires-python = ">=3.8, <3.15"
authors = [
{ name = "Robot Framework Developers", email = "robotframework@gmail.com" },
]
maintainers = [
{ name = "Hélio Guilherme", email = "helioxentric@gmail.com" },
]
keywords = [
"robotframework",
"testautomation",
"testing",
"test editor",
"IDE",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Testing",
]
dependencies = [
"isbinary",
"psutil",
"Pygments",
"PyPubSub",
"Pywin32; platform_system == 'Windows'",
"wxPython",
"robotframework",
"psutil",
"packaging",
"requests>=2.32.4",
]
[project.urls]
Download = "https://pypi.python.org/pypi/robotframework-ride"
Homepage = "https://github.com/robotframework/RIDE/"
[tool.uv]
# python-preference = "only-system"
[tool.hatch.version]
path = "src/robotide/version.py"
[tool.hatch.build.targets.sdist]
include = [
"/src",
]
[tool.hatch.build.targets.wheel]
packages = ["src/robotide"]
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = 'text/markdown'
fragments = [
{path = 'README.md'},
{text = '## License'},
{path = 'LICENSE.txt'},
]
[project.scripts]
ride_postinstall = "robotide.postinstall:main"
ride = "robotide:main"
[project.gui-scripts]
ride = "robotide:main"
[tool.hatch.envs.test]
dependencies = [
"pytest",
"coverage",
]
[[tool.hatch.envs.test.matrix]]
python = ["3.13"]
version = ["2.2"]
[tool.poetry]
name = "robotframework-ride"
version = "2.2"
description = "RIDE :: Robot Framework Test Data Editor"
authors = ["Robot Framework Developers <robotframework@gmail.com>"]
license = "Apache-2.0 license"
readme = "README.adoc"
packages = [{include = "robotide"}]
[tool.poetry.dependencies]
python = "^3.8"
wxPython = "^4.1.1"
pywin32 = { version = "*", markers = "sys_platform == 'win32'" }
pygments = "*"
robotframework = "*"
pypubsub = "*"
psutil = "*"
[tool.poetry.group.test.dependencies]
pytest = "*"
pytest-mock = "*"
coverage = "*"