-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (55 loc) · 1.68 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
[tool.poetry]
name = "pupy"
version = "2.23.0"
description = "pretty useful python"
authors = ["jessekrubin <jessekrubin@gmail.com>"]
license = "BSD-2-Clause"
readme = "README.md"
repository = "https://github.com/jessekrubin/pupy"
include = [
"CHANGELOG.rst",
"pyproject.toml",
"setup.py",
"README.md"
]
packages = [
{ include = "pupy" },
]
keywords = ["useful", "utils", "tool", "cli"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = "^3.5"
toml = {version = "^0.10.0", optional = true}
python-rapidjson = {version = "^0.7.2", optional = true}
msgpack = {version = "^0.6.1", optional = true}
"ruamel.yaml" = {version = "^0.15.97", optional = true}
aiofiles = {version = "^0.4.0", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^4.2"
pytest-cov = "^2.6"
tox = "^3.11"
flake8 = "^3.7"
[tool.poetry.extras]
io = ["toml", "python-rapidjson", "msgpack", "ruamel.yaml", "aiofiles"]
[tool.poetry.scripts]
pupy = "pupy.cli:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
# Compatible python versions
python = "^3.6"