-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
56 lines (47 loc) · 1.51 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
54
55
56
[project]
[tool.poetry]
name = "aerosense-tools"
version = "0.10.1"
description = "Functions for working with aerosense data, useful in building dashboards, analysis notebooks and digital twin services"
authors = ["Tom Clark", "Marcus Lugg", "Yuriy Marykovsky"]
license = "BSD-3"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
repository = "https://github.com/aerosense-ai/aerosense-tools"
keywords = ["aerosense", "tools"]
packages = [{ include = "aerosense_tools" }]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
google-cloud-bigquery = {extras = ["bqstorage", "pandas"], version = "^3.0.1"}
plotly = "^5.10.0"
octue = "^0.46.1"
[tool.poetry.group.dev.dependencies]
coverage = "^6.2"
pre-commit = "^2.17.0"
pytest-sugar = "^0.9.4"
pytest-asyncio = "^0.17.2"
pytest = "^6.2.5"
tox = "^3.24.5"
tox-gh-actions = "^2.9.1"
tox-poetry = "^0.4.1"
jupyter = "^1.0.0"
# Documentation
Sphinx = ">=4,<5"
sphinx-rtd-theme = ">=1,<2"
sphinx-tabs = ">=3,<4"
sphinx-toolbox = "3.0.0"
sphinx-pyproject = "^0.1.0"
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-rtd-theme", "sphinx-pyproject"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"