1- [tool . poetry ]
1+ [project ]
22name = " databento"
33version = " 0.64.0"
44description = " Official Python client library for Databento"
5- authors = [
6- 7- ]
8- license = " Apache License 2.0"
9- packages = [
10- {include = " databento" },
11- {include = " databento/py.typed" },
12- ]
5+ readme = " README.md"
6+ requires-python = " >=3.10"
7+ license = " Apache-2.0"
8+ authors = [{
name =
" Databento" ,
email =
" [email protected] " }]
139classifiers = [
1410 " Development Status :: 4 - Beta" ,
1511 " Operating System :: OS Independent" ,
@@ -18,30 +14,34 @@ classifiers = [
1814 " Topic :: Office/Business :: Financial" ,
1915 " Topic :: Office/Business :: Financial :: Investment" ,
2016]
21- readme = " README.md"
22- documentation = " https://databento.com/docs"
23- homepage = " https://databento.com"
24- repository = " https://github.com/databento/databento-python"
17+ dependencies = [
18+ " aiohttp>=3.8.3,<4.0.0; python_version < '3.12'" ,
19+ " aiohttp>=3.9.0,<4.0.0; python_version >= '3.12'" ,
20+ " databento-dbn~=0.42.0" ,
21+ " numpy>=1.23.5; python_version < '3.12'" ,
22+ " numpy>=1.26.0; python_version >= '3.12'" ,
23+ " pandas>=1.5.3" ,
24+ " pip-system-certs>=4.0; platform_system == 'Windows'" ,
25+ " pyarrow>=13.0.0" ,
26+ " requests>=2.27.0" ,
27+ " zstandard>=0.21.0" ,
28+ ]
2529
26- [tool .poetry .urls ]
30+ [project .urls ]
31+ Homepage = " https://databento.com"
32+ Documentation = " https://databento.com/docs"
33+ Repository = " https://github.com/databento/databento-python"
2734"Bug Tracker" = " https://github.com/databento/databento-python/issues"
2835
29- [tool .poetry .dependencies ]
30- python = " ^3.9"
31- aiohttp = [
32- {version = " ^3.8.3" , python = " <3.12" },
33- {version = " ^3.9.0" , python = " ^3.12" }
34- ]
35- databento-dbn = " ~=0.42.0"
36- numpy = [
37- {version = " >=1.23.5" , python = " <3.12" },
38- {version = " >=1.26.0" , python = " ^3.12" }
36+ [tool .poetry ]
37+ requires-poetry = " >=2.0"
38+ packages = [
39+ { include = " databento" },
40+ { include = " databento/py.typed" },
3941]
40- pandas = " >=1.5.3"
41- pip-system-certs = {version =" >=4.0" , markers =" platform_system == 'Windows'" }
42- pyarrow = " >=13.0.0"
43- requests = " >=2.27.0"
44- zstandard = " >=0.21.0"
42+
43+ [tool .poetry .dependencies ]
44+ requires-python = " >=3.10,<3.14"
4545
4646[tool .poetry .group .dev .dependencies ]
4747black = " ^23.9.1"
@@ -63,7 +63,7 @@ build-backend = "poetry.core.masonry.api"
6363line_length = 100
6464
6565[tool .mypy ]
66- python_version = 3.9
66+ python_version = " 3.10 "
6767disallow_untyped_defs = true
6868disallow_any_generics = true
6969disallow_subclassing_any = true
0 commit comments