-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
78 lines (65 loc) · 1.84 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[tool.poetry]
name = "ts2py"
version = "0.0.2"
description = "Python-Interoperability for Typescript-Interfaces"
license = "Apache-2.0"
authors = ["Angelo Delicato <thelicato@duck.com>"]
readme = "README.md"
repository = "https://github.com/thelicato/ts2py"
homepage = "https://github.com/thelicato/ts2py"
keywords = [
'Typescript to Python converter',
'Typescript Interface',
'Python TypedDict',
]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Text Processing :: Markup',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Compilers'
]
packages = [
{ include = "ts2py" }
]
[tool.poetry.dependencies]
python = "^3.10"
dhparser = "^1.3.3"
typing-extensions = "^4.4.0"
typer = {extras = ["all"], version = "^0.7.0"}
[tool.pylint."MESSAGES CONTROL"]
confidence = ''
disable = '''
missing-function-docstring,
missing-module-docstring,
missing-class-docstring
'''
[tool.black]
line-length = 88
target-version = ['py310', 'py311']
include = 'ts2py/.*\.pyi?'
extend-exclude = '''
/(
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
[tool.poetry.scripts]
ts2py = 'ts2py.main:main'
[tool.poetry.group.dev.dependencies]
pylint = "^2.15.10"
pre-commit = "^2.21.0"
black = "^22.12.0"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools", "wheel"]
build-backend = "poetry.core.masonry.api"