|
1 | | -[build-system] |
2 | | -requires = ["setuptools>=68.0", "wheel"] |
3 | | -build-backend = "setuptools.build_meta" |
4 | | - |
5 | | -[project] |
6 | | -name = "json2sql-cli" |
7 | | -version = "0.1.0" |
8 | | -description = "Convert JSON files/datasets to SQL INSERT statements" |
9 | | -readme = "README.md" |
10 | | -requires-python = ">=3.10" |
11 | | -license = "MIT" |
12 | | -authors = [{name = "Revenue Holdings"}] |
13 | | - |
14 | | -dependencies = [ |
15 | | - "typer>=0.9.0", |
16 | | - "rich>=13.0.0", |
17 | | -] |
18 | | -keywords = ["json", "sql", "etl", "data-conversion", "cli"] |
19 | | -classifiers = [ |
20 | | - "Development Status :: 4 - Beta", |
21 | | - "Intended Audience :: Developers", |
22 | | - "Topic :: Database", |
23 | | - "Programming Language :: Python :: 3", |
24 | | - "Programming Language :: Python :: 3.10", |
25 | | - "Programming Language :: Python :: 3.11", |
26 | | - "Programming Language :: Python :: 3.12", |
27 | | -] |
28 | | - |
29 | | -[project.optional-dependencies] |
30 | | -license = ["revenueholdings-license>=0.1.0"] |
31 | | -dev = ["pytest>=7.0", "pytest-cov" |
32 | | - "ruff>=0.4.0", |
33 | | -] |
34 | | - |
35 | | -[project.scripts] |
36 | | -json2sql = "json2sql.cli:app" |
37 | | - |
38 | | -[tool.setuptools.packages.find] |
39 | | -where = ["src"] |
40 | | - |
41 | | -[tool.ruff] |
42 | | -target-version = "py310" |
43 | | -line-length = 120 |
44 | | - |
45 | | -[tool.ruff.lint] |
46 | | -select = ["E", "F", "W", "I", "UP", "B", "SIM"] |
47 | | -ignore = ["E501"] |
48 | | - |
49 | | -[tool.ruff.lint.isort] |
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=68.0", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "json2sql-cli" |
| 7 | +version = "0.1.0" |
| 8 | +description = "Convert JSON files/datasets to SQL INSERT statements" |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.10" |
| 11 | +license = "MIT" |
| 12 | +authors = [{name = "Revenue Holdings"}] |
| 13 | + |
| 14 | +dependencies = [ |
| 15 | + "typer>=0.9.0", |
| 16 | + "rich>=13.0.0", |
| 17 | +] |
| 18 | +keywords = ["json", "sql", "etl", "data-conversion", "cli"] |
| 19 | +classifiers = [ |
| 20 | + "Development Status :: 4 - Beta", |
| 21 | + "Intended Audience :: Developers", |
| 22 | + "Topic :: Database", |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "Programming Language :: Python :: 3.10", |
| 25 | + "Programming Language :: Python :: 3.11", |
| 26 | + "Programming Language :: Python :: 3.12", |
| 27 | +] |
| 28 | + |
| 29 | +[project.optional-dependencies] |
| 30 | +license = ["revenueholdings-license>=0.1.0"] |
| 31 | +dev = [ |
| 32 | + "pytest>=7.0.0", |
| 33 | + "pytest-cov>=4.0.0", |
| 34 | + "ruff>=0.4.0", |
| 35 | +] |
| 36 | + |
| 37 | +[project.scripts] |
| 38 | +json2sql = "json2sql.cli:app" |
| 39 | + |
| 40 | +[tool.setuptools.packages.find] |
| 41 | +where = ["src"] |
| 42 | + |
| 43 | +[tool.ruff] |
| 44 | +target-version = "py310" |
| 45 | +line-length = 120 |
| 46 | + |
| 47 | +[tool.ruff.lint] |
| 48 | +select = ["E", "F", "W", "I", "UP", "B", "SIM"] |
| 49 | +ignore = ["E501"] |
| 50 | + |
| 51 | +[tool.ruff.lint.isort] |
50 | 52 | known-first-party = ["*"] |
0 commit comments