-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
86 lines (73 loc) · 2.29 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
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name = 'FracAbility'
description = 'Analyse fracture networks for digitalized rock outcrops. '
authors = [
{name = 'Gabriele Benedetti', email = '[email protected]'},
{name = 'Stefano Casiraghi', email = '[email protected]'},
{name = 'Daniela Bertacchi', email = '[email protected]'},
{name = 'Andrea Bistacchi', email = '[email protected]'},
]
readme = 'README.md'
requires-python = '>=3.8'
keywords = ['DOM', 'censoring', 'fractures','fracture-networks', 'survival-analysis', 'reliability']
license = {text = 'AGPL-3.0 license '}
classifiers = [
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: GNU Affero General Public License v3'
]
dependencies = [
'pyvista',
'networkx',
'geopandas',
'scipy',
'python-ternary',
'pyperclip',
'pyqt5',
'openpyxl',
'seaborn',
'trame',
'jupyter'
]
dynamic = ['version']
[project.urls]
Documentation = 'https://fracability.readthedocs.io/en/latest/index.html'
"Bug Tracker" = 'https://github.com/gecos-lab/FracAbility/issues'
"Source Code" = 'https://github.com/gecos-lab/FracAbility'
[tool.setuptools.dynamic]
version = {attr = 'fracability.__version__'}
[tool.setuptools.packages.find]
include = [
'fracability',
'fracability.*',
]
[tool.setuptools.package-data]
"fracability.examples" = [
'**',
]
[tool.isort]
profile = 'black'
line_length = 100
# Sort by name, don't cluster "from" vs "import"
force_sort_within_sections = true
# Combines "as" imports on the same line
combine_as_imports = true
[tool.black]
line-length = 100
skip-string-normalization = true
target-version = ['py39']
exclude='\.eggs|\.git|\.mypy_cache|\.tox|\.venv|_build|buck-out|build|dist|node_modules'
[tool.blackdoc]
line-length = 75