Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
dist/
.pytest_cache
docs/_build/*
**/__pycache__/**
.DS_Store
.tox
.env
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tool.poetry]
name = "procurement-tools"
version = "0.2.2"
version = "0.3.0"
description = "Python tools for navigating federal contracting"
authors = ["V. David Zvenyach <dave@tandemgov.com>"]
authors = ["V. David Zvenyach <dave@tandemgov.com>", "Jonathan \"Yoni\" Knoll <yoni@tandemgov.com>"]
readme = "README.md"
license = "Apache-2.0"
keywords = ["packaging", "poetry"]
Expand Down
15 changes: 14 additions & 1 deletion src/procurement_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,18 @@
from .sbir import SBIR
from .uei import UEI
from .usaspending import USASpending
from .glossary import Glossary
from .socioeconomic import Socioeconomic
from .translations import interpret_reason_for_modification

__all__ = ["USASpending", "UEI", "FAR", "PeriodicTable", "SBIR", "SAM"]
__all__ = [
"FAR",
"Glossary",
"PeriodicTable",
"SAM",
"SBIR",
"Socioeconomic",
"UEI",
"USASpending",
"interpret_reason_for_modification",
]
1,889 changes: 1,889 additions & 0 deletions src/procurement_tools/data/18f_glossary.yml

Large diffs are not rendered by default.

Loading