-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.15 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
[tool.poetry]
name = 'croco_cli'
version = '0.3.1.post2'
description = 'The CLI for developing Web3-based projects in Croco Factory'
authors = ['Alexey <axbelenkov@gmail.com>']
license = 'MIT'
readme = 'README.md'
repository = 'https://github.com/CrocoFactory/croco-cli'
homepage = 'https://github.com/CrocoFactory/croco-cli'
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Version Control :: Git',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS'
]
packages = [{ include = 'croco_cli' }]
[tool.poetry.dependencies]
python = '^3.11'
click = "^8.1.7"
pygithub = "^2.2.0"
peewee = "^3.17.0"
eth-account = "^0.11.0"
blessed = "^1.20.0"
[tool.poetry.group.dev.dependencies]
twine = "^5.1.0"
build = "^1.2.1"
pytest = "^8.2.2"
[build-system]
requires = ['poetry-core']
build-backend = 'poetry.core.masonry.api'
[tool.poetry.scripts]
croco = "croco_cli.__main__:cli"