Skip to content

Commit ad23f7b

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

2 files changed

Lines changed: 80 additions & 8 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: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,21 @@ dependencies = [
1515
"click>=8.1",
1616
"rich>=13.0",
1717
"pyyaml>=6.0",
18-
"revenueholdings-license>=0.1.0",
18+
]
19+
keywords = ["infrastructure", "terraform", "cloudformation", "pulumi", "cost", "diff", "cli"]
20+
classifiers = [
21+
"Development Status :: 4 - Beta",
22+
"Intended Audience :: Developers",
23+
"Topic :: System :: Systems Administration",
24+
"Programming Language :: Python :: 3",
25+
"Programming Language :: Python :: 3.9",
26+
"Programming Language :: Python :: 3.10",
27+
"Programming Language :: Python :: 3.11",
28+
"Programming Language :: Python :: 3.12",
1929
]
2030

2131
[project.optional-dependencies]
32+
license = ["revenueholdings-license>=0.1.0"]
2233
dev = [
2334
"pytest>=7.0",
2435
"pytest-cov>=4.0",

0 commit comments

Comments
 (0)