-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.11 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
[build-system]
requires = ['setuptools>=45', 'setuptools_scm[toml]>=6.2']
[project]
name = 'robotframework-rpycremote'
authors = [
{name = 'René Lehfeld', email = '[email protected]'},
]
description = 'Robot Framework Remote Library based on RPyC'
requires-python = '>=3.7'
license = {text = 'MIT'}
keywords = ['robotframework', 'robot-framework', 'rpyc']
classifiers = [
'Programming Language :: Python :: 3',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
]
dependencies = [
'robotframework>=5.0.1',
'rpyc>=6.0.1',
]
dynamic = ['version', 'readme']
[project.urls]
'Homepage' = 'https://github.com/rlehfeld/robotframework-rpycremote'
'Bug Reports' = 'https://github.com/rlehfeld/robotframework-rpycremote/issues'
'Source' = 'https://github.com/rlehfeld/robotframework-rpycremote/'
[tool.setuptools]
packages = ['RPyCRobotRemote']
[tool.setuptools.dynamic]
readme = {file = ['README.rst']}
[tool.setuptools_scm]
write_to = 'RPyCRobotRemote/_version.py'