-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (52 loc) · 1.64 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
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name = 'feigen'
description = 'python interactive front-end for iganet.'
authors = [
{name = 'Jaewook Lee', email = '[email protected]'},
{name = 'Matthias Möller', email = '[email protected]'},
]
readme = 'README.md'
requires-python = '>=3.7'
keywords = ['iganet', 'interactive']
license = {text = 'MPL 2.0'}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
'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',
]
dependencies = [
'vedo>=2024.5.1',
'numpy',
'gustaf>=0.0.23',
'splinepy[all]>=0.0.51',
'websockets',
]
dynamic = ['version']
[tool.setuptools.dynamic]
version = {attr = 'feigen._version.__version__'}
[tool.ruff]
select = [
"E", "F", "W", # flake8
"B", # flake8-bugbear
"ARG", # flake8-unused-arguments
"C4", # flake8-comprehensions
"PL", # pylint
"SIM", # flake8-simplify
"T20", # flake8-print
"NPY", # numpy specific rules
"I", # isort specific rules
"UP", # pyupdate specific rules
"C400","C401","C402","C403","C404","C405" # additional pyupgrade rules
]