-
Notifications
You must be signed in to change notification settings - Fork 42
/
pyproject.toml
53 lines (48 loc) · 1.34 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = 'congressionalrecord'
version = "2.0.8"
description = 'Parse the U.S. Congressional Record from GovInfo.'
authors = [
{ name="Nick Judd", email="nick@nclarkjudd.com" },
]
readme = "README.md"
requires-python = ">= 3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
]
dependencies = [
'beautifulsoup4',
'soupsieve',
'lxml',
'numpy',
'psycopg2-binary',
'urllib3',
'pyelasticsearch',
'SQLAlchemy ',
'requests[security]',
'PyYAML',
'unicodecsv',
'future'
]
keywords = ["unitedstates", "open government data", "congress", "legislative data"]
[project.urls]
Homepage='https://github.com/unitedstates/congressional-record'
Issues='https://github.com/unitestates/congressional-record/issues'
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["congressionalrecord"]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "semver"
version_provider = "pep621"
update_changelog_on_bump = true