-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (73 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
83 lines (73 loc) · 1.95 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ness"
version = "0.1.5"
description = "A Python datalake client."
license = "MIT"
authors = ["Dani <dani@postpay.io>"]
readme = "README.md"
include = ["LICENSE", "README.md"]
keywords = ["ness", "datalake", "s3", "pandas"]
homepage = "https://github.com/postpayio/ness"
repository = "https://github.com/postpayio/ness"
packages = [
{ include = "ness" },
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Typing :: Typed",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">=3.7.1,<4.0"
pandas = ">= 0.18.1"
click = ">= 8.0.0"
[tool.poetry.dev-dependencies]
black = "*"
codecov = "*"
flake8 = "*"
isort = "*"
mypy = "*"
pyarrow = "*"
pytest = "*"
pytest-cov = "*"
types-setuptools = "*"
[tool.poetry.scripts]
ness = "ness.cli:main"
[tool.black]
extend-exclude = '''
/(
| .htmlcov
| .mypy_cache
| dist
)/
'''
[tool.isort]
profile = "black"
known_first_party = ["ness"]
[tool.mypy]
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
ignore_missing_imports = true