forked from cs-cordero/py-ts-interfaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (45 loc) · 1.44 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
[tool.poetry]
name = 'py-ts-interfaces'
version = '0.5.1'
description = 'A library that converts Python dataclasses with type annotations to a TypeScript interface and serializes them to a file.'
license = 'MIT'
authors = [
'Christopher Cordero <ccordero@protonmail.com>'
]
readme = 'README.md'
repository = 'https://github.com/cs-cordero/py-ts-interfaces'
homepage = 'https://github.com/cs-cordero/py-ts-interfaces'
documentation = 'https://github.com/cs-cordero/py-ts-interfaces'
keywords = ['python', 'typescript', 'interfaces']
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Typing :: Typed"
]
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = '^3.7.2'
astroid = ">=2.12.2"
[tool.poetry.dev-dependencies]
black = '22.6.0'
flake8 = '4.0.1'
mypy = '1.0.0'
pytest-cov = '4.0.0'
pytest = "7.2.1"
isort = [
{ version = "5.11.5", python = "<3.8" },
{ version = "5.12.0", python = ">=3.8" }
]
nox = "2022.1.7"
nox-poetry = "1.0.1"
typed-ast = { version = "1.5.4", python = "<3.8" }
[tool.poetry.scripts]
py-ts-interfaces = "py_ts_interfaces.cli:main"