-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (60 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
71 lines (60 loc) · 1.5 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "osdu-sdk"
dynamic = ["version", "readme"]
description = "OSDU SDK for Python"
license = { text = "MIT" }
requires-python = ">= 3.12"
authors = [
{ name = "Equinor ASA", email = "mhew@equinor.com" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = ["osdu-sdk"]
dependencies = [
"requests==2.31.0",
"msal==1.31.1"
]
[project.urls]
homepage = "https://github.com/equinor/osdu-sdk-python"
issue-tracker = "https://github.com/equinor/osdu-sdk-python/issues"
[project.optional-dependencies]
dev = [
# formatting
"black",
"isort",
# linting
"flake8",
"pep8",
"autopep8",
"pylint",
# testing
"mock",
"nose2[coverage-plugin]",
"testfixtures",
"vcrpy",
# other frameworks
#"knack",
"setuptools",
"tox",
"docutils"
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools]
py-modules = ["osdu"]
[tool.setuptools.dynamic]
version = {attr = "osdu.__VERSION__"}
readme = {file = "README.rst"}
[tool.nose2]
unittest = { test-file-pattern = "*test*.py", start-dir = "tests" }