contracts-hj3415 0.1.0__tar.gz → 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (20) hide show
  1. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/PKG-INFO +1 -2
  2. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/pyproject.toml +1 -2
  3. contracts_hj3415-0.1.1/requirements.txt +1 -0
  4. contracts_hj3415-0.1.0/requirements.txt +0 -2
  5. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/LICENSE +0 -0
  6. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/README.md +0 -0
  7. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/pytest.ini +0 -0
  8. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/src/contracts_hj3415/__init__.py +0 -0
  9. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/src/contracts_hj3415/common/__init__.py +0 -0
  10. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/src/contracts_hj3415/common/base.py +0 -0
  11. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/src/contracts_hj3415/common/types.py +0 -0
  12. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/src/contracts_hj3415/common.py +0 -0
  13. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/src/contracts_hj3415/events.py +0 -0
  14. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/src/contracts_hj3415/items.py +0 -0
  15. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/src/contracts_hj3415/nfs/__init__.py +0 -0
  16. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/src/contracts_hj3415/nfs/delta.py +0 -0
  17. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/src/contracts_hj3415/nfs/dim_account.py +0 -0
  18. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/src/contracts_hj3415/nfs/dim_period.py +0 -0
  19. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/src/contracts_hj3415/nfs/fact.py +0 -0
  20. {contracts_hj3415-0.1.0 → contracts_hj3415-0.1.1}/src/contracts_hj3415/users.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: contracts-hj3415
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A tiny example package
5
5
  Keywords: example,demo
6
6
  Author-email: Hyungjin Kim <hj3415@gmail.com>
@@ -11,7 +11,6 @@ Classifier: License :: OSI Approved :: MIT License
11
11
  Classifier: Typing :: Typed
12
12
  License-File: LICENSE
13
13
  Requires-Dist: pydantic>=2.7
14
- Requires-Dist: contract-hj3415>=0.1
15
14
  Requires-Dist: pytest>=8 ; extra == "dev"
16
15
  Requires-Dist: pytest-cov>=7.0 ; extra == "dev"
17
16
  Requires-Dist: ruff>=0.5 ; extra == "dev"
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
4
4
 
5
5
  [project]
6
6
  name = "contracts-hj3415" # PyPI 이름 (하이픈 허용)
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "A tiny example package"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -19,7 +19,6 @@ classifiers = [
19
19
 
20
20
  dependencies = [
21
21
  "pydantic>=2.7",
22
- "contract-hj3415>=0.1",
23
22
  ]
24
23
 
25
24
  # 선택적 의존성 (pip install your-pkg[dev] 형태)
@@ -0,0 +1 @@
1
+ pydantic>=2.7
@@ -1,2 +0,0 @@
1
- pydantic>=2.7
2
- contract-hj3415>=0.1