forked from equinor/tagreader-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.72 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
[tool.poetry]
name = "tagreader"
version = "6.0.1"
description = "Tagreader is a Python package for reading trend data from the OSIsoft PI and Aspen Infoplus.21 IMS systems."
authors = ["Einar S. Idsø <[email protected]>", "Morten Dæhli Aslesen <[email protected]"]
license = "MIT"
readme = "README.md"
packages = [{include = "tagreader"}]
keywords=["Aspen InfoPlus.21", "OSIsoft PI"]
homepage = "https://github.com/equinor/tagreader-python"
repository = "https://github.com/equinor/tagreader-python"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.8"
pandas = ">=1"
certifi = "^2024.7.4"
requests = "^2"
requests-kerberos = "^0"
msal-bearer = ">=0.2.1,<1.2.0"
notebook = { version = "^7.2.0", optional = true }
matplotlib = { version = "^3.7.0", optional = true }
diskcache = "^5.6.1"
pycryptodome = "^3.20.0"
requests-ntlm = ">=1.1,<=2.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3"
pytest = ">=7,<9"
[tool.poetry.extras]
notebooks = ["notebook", "matplotlib"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"