-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
38 lines (34 loc) · 1.08 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
[tool.poetry]
name = "pyopenstates"
version = "2.3.1"
description = "A Python module for accessing the Open States API & bulk data."
authors = ["James Turk <[email protected]>", "Sean Whalen <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/openstates/pyopenstates"
classifiers = [
'Topic :: Sociology :: History',
'Intended Audience :: Developers',
'Intended Audience :: Legal Industry',
"Intended Audience :: Science/Research",
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.26.0"
python-dateutil = "^2.8.2"
pandas = {version = "^1.3.4", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
flake8 = "^4.0.1"
mkdocstrings = "^0.16.2"
mkdocs-material = "^7.3.6"
[tool.poetry.extras]
pandas = ["pandas"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"