-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (96 loc) · 2.4 KB
/
pyproject.toml
File metadata and controls
108 lines (96 loc) · 2.4 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ccp-performance"
dynamic = ["version"]
description = "Centrifugal Compressor Performance calculation."
readme = "README.md"
authors = [
{name = "Raphael Timbó", email = "raphaelts@petrobras.com.br"}
]
license = {text = "Apache-2.0"}
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
"numpy",
"scipy",
"pandas>=0.23",
"pyarrow",
"CoolProp",
"pint>=0.18",
"plotly>=4.7.0",
"toml>=0.10.1",
"openpyxl",
"tqdm",
"ctREFPROP",
"xlsxwriter",
"scikit-learn",
"xlwings; sys_platform == 'win32' or sys_platform == 'cygwin' or sys_platform == 'msys'",
"google-generativeai>=0.8.6",
"markdown>=3.9",
]
[project.urls]
Documentation = "https://ccp-centrifugal-compressor-performance.readthedocs.io/en/stable/"
"Bug Tracker" = "https://github.com/petrobras/ccp/issues"
"Source Code" = "https://github.com/petrobras/ccp"
[project.optional-dependencies]
app = [
"streamlit>=1.21.0",
"sentry-sdk",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "ccp.__version__"}
[tool.setuptools.packages.find]
include = ["ccp*"]
[tool.setuptools.package-data]
"ccp.config" = ["new_units.txt", "legacy_water_units.txt"]
"ccp.tests" = ["*.py"]
"ccp.tests.data" = ["*"]
[tool.ruff]
line-length = 88
target-version = "py38"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[dependency-groups]
dev = [
"pre-commit",
"pytest",
"pytest-cov",
"coverage",
"codecov",
"sphinx",
"nbsphinx",
"numpydoc",
"sphinxcontrib-bibtex",
"ruff",
"myst-nb",
"linkify-it-py",
"sphinx-book-theme",
"sphinx-panels",
"sphinx-copybutton",
"sphinx-rtd-theme",
]
[tool.uv]
package = true