-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.53 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (48 loc) · 1.53 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "typeright"
version = "0.1.0"
description = "Add type annotations to your source code"
authors = ["Chad Dombrova <chadrik@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/chadrik/typeright"
keywords = ["pep484", "typing", "annotations", "mypy"]
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development',
]
[tool.poetry.scripts]
typeright = 'typeright.__main__:main'
[tool.poetry.dependencies]
python = "~2.7 || ^3.6"
six = "*"
docutils = "*"
"kids.cache" = "*"
typing = { version = "3.7.*", python = "<3.7" }
typing-extensions = { version = ">=3.7.4.3", python = ">=3.7,<3.10" }
pytest = { version = "^6.1", python = ">=3.5", optional = true }
coverage = { version = "*", optional = true }
pytest-mock = { version = "*", optional = true }
mypy_extensions = { version = ">=0.3.0", optional = true }
[tool.poetry.extras]
tests = [
"pytest",
"coverage",
"pytest-mock",
"mypy_extensions"
]
[tool.poetry.dev-dependencies]
tox = "^3.20"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"