-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
83 lines (72 loc) · 1.86 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
79
80
81
82
83
[project]
name = "SciXPipelineUtils"
version = "0.0.3"
description = "A collection of utilities for the new NASA Science Explorer (NASA SciX) backoffice architecture"
authors = [{ name = "Taylor Jacovich", email = "tjacovich@cfa.harvard.edu"}]
license = { text = "GPL-3.0" }
readme = "README.md"
#repository = "https://github.com/adsabs/SciXPipelineUtils"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
]
packages = [
"SciXPipelineUtils",
]
dependencies = [
'boto3==1.26.59',
'avro==1.11.1',
]
[project.urls]
Source = "https://github.com/adsabs/SciXPipelineUtils"
[project.optional-dependencies]
dev = [
'black==22.3.0',
'flake8==4.0.1',
'isort==5.12.0',
'pytest==7.3.1',
'pyupgrade==2.29.1',
'pytest-mock==3.6.1',
'pre-commit==2.16.0',
'coveralls==3.3.1',
'mock==4.0.3',
'coverage==6.2',
'pytest-cov==4.0.0',
'moto==4.1.3',
'confluent-kafka==1.9.2',
'fastavro==1.9.7',
]
[tool.pytest.ini_options]
addopts = "--cov=SciXPipelineUtils/ --cov-report=term-missing"
cache_dir = ".tmp/"
testpaths = [
"tests/",
]
pythonpath = [
"SciXPipelineUtils/",
]
[tool.coverage.run]
data_file = "SciXPipelineUtils/.coverage"
[tool.coverage.report]
skip_empty = true
skip_covered = true
[tool.isort]
profile = "black"
known_first_party = ["SciXPipelineUtils", "tests",]
[tool.black]
line-length = 99 # override black's default line-length
[build-system]
requires = ["setuptools==60.10.0", "wheel", "flit_core >=3.2,<4", "ppsetuptools==2.0.2"]
build-backend = "flit_core.buildapi"
#build-backend = "setuptools.build_meta"
# see setup.py for explanation of these
[xsetup.entry_points]
console_scripts = [
"adsingestp=adsingestp.cli:cli",
]
[xsetup]
scripts = [
]