forked from sdonglab/molextract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (31 loc) · 878 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "molextract"
authors = [{name = "Nithin Chintala", email = "chintala.v@northeastern.edu"}]
description = "Parse Molcas/OpenMolcas log files in a modular way"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = [
"chemistry",
"computational-chemistry",
"log-files",
"parsing",
"parser",
"molcas",
"open-molcas"
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Topic :: Scientific/Engineering :: Chemistry",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "molextract.__version__"}
[tool.yapf]
based_on_style = "google"
[project.urls]
Homepage = "https://github.com/sdonglab/molextract"