-
Notifications
You must be signed in to change notification settings - Fork 153
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1012 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 1012 Bytes
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "ingestr"
authors = [
{ name="Burak Karakan", email="burak.karakan@getbruin.com" },
]
dynamic = ["version"]
description = "ingestr is a command-line application that ingests data from various sources and stores them in any database."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Database"
]
[project.urls]
Homepage = "https://github.com/bruin-data/ingestr"
Issues = "https://github.com/bruin-data/ingestr/issues"
[project.optional-dependencies]
sdk = ["pyarrow>=10"]
[project.scripts]
ingestr = "ingestr._runner:main"
[tool.hatch.build.targets.wheel]
packages = ["ingestr"]
[tool.hatch.version]
source = "vcs"