-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
43 lines (36 loc) · 1011 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[tool.poetry]
name = "ramp-packer"
version = "2.5.4"
description = "Packs for Redis modules into a distributable format"
authors = ["Redis OSS <[email protected]>"]
license = "BSD-2-Clause"
readme = "README.md"
packages = [
{ include = 'RAMP' }
]
classifiers = [
'Topic :: Database',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: BSD License',
'Development Status :: 4 - Beta',
]
[tool.poetry.scripts]
ramp = "RAMP.ramp:ramp"
[tool.poetry.dependencies]
python = ">= 3.7,<4"
click = "^8"
semantic-version = "^2.8.5"
redis = ">= 4.1.0"
PyYAML = "^6.0"
distro = "^1.8"
[tool.poetry.dev-dependencies]
coverage = "^5.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"