-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (45 loc) · 1.15 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
build-backend = 'hatchling.build'
requires = [ 'hatchling' ]
[project]
authors = [
{ email='[email protected]', name='Sitt Guruvanich'},
]
classifiers = [
'Framework :: AsyncIO',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3 :: Only',
]
dependencies = [
'click >=8.1.7',
'httpx >=0.27.0',
'pydantic >=2.6.2',
'pyyaml >=6.0.1',
'rich >=13.7.1',
]
description = 'Command line interface for handling LINE Rich menus via Messaging API'
homepage = 'https://github.com/aekasitt/niel'
license = 'MIT'
name = 'niel'
version = '0.1.0'
readme = 'README.md'
requires-python = '>=3.9'
repository = 'https://github.com/aekasitt/niel'
[project.scripts]
niel = 'niel.core:cli'
[tool.ruff]
indent-width = 2
line-length = 100
target-version = 'py38'
[tool.ruff.lint.per-file-ignores]
'__init__.py' = ['F401'] # Ignore empty imports
[tool.uv]
dev-dependencies = [
'mypy >=1.8.0',
'ruff >=0.3.7',
]