-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (49 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
56
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "modules-gui"
description = "MoGui, Graphical User Interface for Modules"
authors = [
{name = "Xavier Delaruelle", email = "[email protected]"},
{name = "Aurélien Cedeyn", email = "[email protected]"},
]
requires-python = ">=3.6"
dependencies = [
"PyQt5",
]
readme = "README.md"
license = {file = "COPYING.GPLv2"}
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
[tool.setuptools]
packages = ["mogui"]
[tool.setuptools_scm]
[project.scripts]
mogui-setup-env = "mogui.setup_env:setup_env"
mogui-cmd = "mogui.__main__:main"
[project.gui-scripts]
mogui = "mogui.__main__:main"
[project.urls]
Homepage = "https://github.com/cea-hpc/mogui/"
Repository = "https://github.com/cea-hpc/mogui.git"
Issues = "https://github.com/cea-hpc/mogui/issues"
[tool.pylint.main]
extension-pkg-whitelist = "PyQt5"