-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (41 loc) · 1.22 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dpypeline"
description = "Program for creating data pipelines triggered by file creation events."
requires-python = ">=3.9"
keywords = ["data", "pipeline", "data-pypeline", "dpypeline", "pypeline", "noc"]
authors = [{email = "[email protected]"},{name = "Joao Morado"}]
maintainers = [{name = "Joao Morado", email = "[email protected]"}]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research"
]
dependencies = [
"dask>=2023.3.0",
"dask-jobqueue>=0.8.1",
"s3fs>=2023.3.0",
"celery==5.2.7",
"fsspec>=2023.3.0",
"watchdog==2.3.1",]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
file = "LICENSE.md"
content-type = "text/markdown"
[tool.setuptools.dynamic]
version = {attr = "dpypeline.__init__.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
exclude = ["*__pycache__*"]
namespaces = true
[project.optional-dependencies]
test = ["pytest >= 7.2.0"]
[project.urls]
repository = "https://github.com/NOC-OI/data-pypeline"
[project.scripts]
dpypeline = "dpypeline.cli.main_cli:dpypeline"