Skip to content

Commit ca169df

Browse files
author
Revenue Holdings
committed
fix: release readiness - fix blockers, add CI/CD, standardize configs
1 parent 8708cd4 commit ca169df

2 files changed

Lines changed: 79 additions & 14 deletions

File tree

.gitignore

Lines changed: 68 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,72 @@
1+
# Byte-compiled / optimized / compiled files
12
__pycache__/
2-
*.pyc
3-
*.pyo
4-
.env
5-
.venv/
6-
venv/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
713
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
823
*.egg-info/
9-
.pytest_cache/
10-
.coverage
24+
*.egg
25+
26+
# PyInstaller
27+
*.manifest
28+
*.spec
29+
30+
# Installer logs
31+
pip-log.txt
32+
pip-delete-this-directory.txt
33+
34+
# Unit test / coverage
1135
htmlcov/
36+
.tox/
37+
.nox/
38+
.coverage
39+
.coverage.*
40+
.cache
41+
nosetests.xml
42+
coverage.xml
43+
*.cover
44+
*.py,cover
45+
.hypothesis/
46+
.pytest_cache/
47+
48+
# Translations
49+
*.mo
50+
*.pot
51+
52+
# Environments
53+
.env
54+
.venv
55+
env/
56+
venv/
57+
ENV/
58+
59+
# IDE
60+
.vscode/
61+
.idea/
62+
*.swp
63+
*.swo
64+
*~
65+
66+
# OS
67+
.DS_Store
68+
Thumbs.db
69+
70+
# Project specific
71+
research/
72+
fixtures/generated/

pyproject.toml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,20 @@ authors = [{name = "Revenue Holdings"}]
1414
dependencies = [
1515
"typer>=0.9.0",
1616
"rich>=13.0.0",
17-
"revenueholdings-license>=0.1.0",
1817
]
19-
20-
[project.urls]
21-
Homepage = "https://github.com/Coding-Dev-Tools/json2sql"
22-
Repository = "https://github.com/Coding-Dev-Tools/json2sql"
23-
Documentation = "https://github.com/Coding-Dev-Tools/json2sql#readme"
24-
"Issue Tracker" = "https://github.com/Coding-Dev-Tools/json2sql/issues"
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+
]
2528

2629
[project.optional-dependencies]
30+
license = ["revenueholdings-license>=0.1.0"]
2731
dev = ["pytest>=7.0", "pytest-cov"]
2832

2933
[project.scripts]

0 commit comments

Comments
 (0)