-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (50 loc) · 1.63 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
[build-system]
requires = [
"wheel",
"setuptools>=68",
"setuptools_scm[toml]>=6.0",
"versioneer[toml]",
"cmake_build_extension",
"PySide6-Essentials",
"shiboken6",
"shiboken6_generator"
]
build-backend = "setuptools.build_meta"
[project]
name = "PySide6MolecularNetwork"
authors = [
{name = "Nicolas Elie", email = "[email protected]"},
]
description = "Qt Widget and Python bindings for visualisation of a network graph"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["PySide6", "PySide", "Qt", "Molecular Network"]
license = {text = "GPLv3+"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
"Environment :: X11 Applications :: Qt",
"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",
]
dynamic=["version"]
[project.urls]
Homepage = "https://github.com/metgem/QtMolecularNetwork"
Repository = "https://github.com/metgem/QtMolecularNetwork"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "PySide6MolecularNetwork/_version.py"
versionfile_build = "PySide6MolecularNetwork/_version.py"
tag_prefix = "v"
parentdir_prefix = ""