-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (30 loc) · 1.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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "irodsgui"
authors = [
{name = "Aurélien Besnier", email = "aurelien.besnier@inrae.fr"},
]
license = {file = "LICENSE"}
description = ""
requires-python = ">=3.9"
keywords = ["iRODS"]
classifiers = [
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
dynamic = ["version", "readme"]
[tool.setuptools.dynamic]
version = {attr = "irodsgui.__version__"}
readme = {file = ["README.md"]}
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["irodsgui*"] # package names should match these glob patterns (["*"] by default)
exclude = ["tests*"] # exclude packages matching these glob patterns (empty by default)
namespaces = true # to disable scanning PEP 420 namespaces (true by default)