forked from Chetic/robotframework-async
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.14 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-async-keyword'
authors = [
{name = 'René Lehfeld', email = '[email protected]'},
]
description = 'Generic Robot Framework library for asynchronous keyword execution'
requires-python = '>=3.7'
license = {text = 'MIT'}
keywords = ['async', 'robotframework']
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'
]
dynamic = ['version', 'readme']
[project.urls]
'Homepage' = 'https://github.com/rlehfeld/robotframework-async-keyword'
'Bug Reports' = 'https://github.com/rlehfeld/robotframework-async-keyword/issues'
'Source' = 'https://github.com/rlehfeld/robotframework-async-keyword/'
[tool.setuptools]
packages = ['AsyncLibrary']
obsoletes = ['robotframework_async']
[tool.setuptools.dynamic]
readme = {file = ['README.rst']}
[tool.setuptools_scm]
write_to = 'AsyncLibrary/_version.py'