-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
29 lines (27 loc) · 955 Bytes
/
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
[tool.poetry]
name = 'rgb-lib'
version = '0.3.0a11'
description = 'RGB Lib Python language bindings.'
license = 'MIT'
authors = ['Zoe Faltibà <[email protected]>', 'Nicola Busanello <[email protected]>']
readme = 'README.md'
homepage = 'https://github.com/RGB-Tools/rgb-lib-python'
repository = 'https://github.com/RGB-Tools/rgb-lib-python'
documentation = 'https://github.com/RGB-Tools/rgb-lib-python'
keywords = ['rgb', 'bitcoin']
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Other/Nonlisted Topic',
]
include = ["src/rgb_lib/_rgb_lib/*"]
[tool.poetry.dependencies]
python = "^3.9.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"