forked from rubenvdvijver/PESViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 1.52 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["build", "dist", ".idea", ".vscode", "PESViewer.egg-info"]
[project]
name = "pesviewer"
version = "1.1.0"
description = "Potential Energy Surface Visualizer"
readme = "README.md"
requires-python = ">=3.6.0"
license = {file = "LICENSE"}
authors = [
{name="Ruben Van de Vijver", email="ruben.vandevijver@ugent.be"},
{name="Judit Zádor", email="jzador@sandia.gov"},
{name="Carles Martí", email="cmartia@sandia.gov"},
]
maintainers = [
{name="Ruben Van de Vijver", email="ruben.vandevijver@ugent.be"},
{name="Judit Zádor", email="jzador@sandia.gov"},
{name="Carles Martí", email="cmartia@sandia.gov"},
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"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",
"Topic :: Scientific/Engineering :: Chemistry"
]
dependencies = [
"numpy>=1.17.0",
"matplotlib",
"networkx",
"pillow",
"pyvis",
]
[project.urls]
homepage = "https://github.com/zadorlab/PESViewer"
documentation = "https://github.com/zadorlab/PESViewer/wiki"
[project.scripts]
pesviewer = "pesviewer.pesviewer:main"