-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
86 lines (79 loc) · 2.09 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = [
"setuptools==75.1.0",
"wheel==0.44.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "rogii-solo"
description = "Rogii Solo is a Python SDK designed to make data scientists' work with Solo easier."
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = [
"rogii",
"solo",
"rogii solo",
"python sdk",
"data science",
"cloud data",
"data analysis",
"papi",
"starsteer",
"geology",
"drilling",
"geosteering"
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Environment :: Web Environment",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Software Development :: Testing :: Unit",
"Topic :: Scientific/Engineering"
]
authors = [
{ name = "Rogii Inc." },
{ email = "[email protected]" }
]
dependencies = [
"requests==2.28.1",
"requests-oauthlib==1.3.1",
"pandas==2.2.2",
"numpy==2.1.1",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"setuptools==75.1.0",
"wheel==0.44.0",
"build==0.8.0",
"twine==4.0.1",
"importlib-metadata==4.2.0",
"virtualenv==20.16.2",
"pre-commit==2.20.0",
"black==23.1.0",
"isort==5.12.0",
"flake8==5.0.4",
"pytest==7.1.2"
]
[project.urls]
"Homepage" = "https://www.rogii.com/"
"Documentation" = "https://kb.solo.cloud/Python+SDK"
"Issue Tracker" = "https://github.com/rogii-com/Python-SDK/issues"
"Source Code" = "https://github.com/rogii-com/Python-SDK"
"License Agreement" = "https://github.com/rogii-com/Python-SDK/blob/develop/LICENSE.txt"
[tool.setuptools.dynamic]
version = {attr = "rogii_solo.__version__"}
[tool.black]
line-length = 120
skip-string-normalization = 1
target-version = ['py310']
[tool.isort]
profile = "black"