-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (74 loc) · 1.8 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (74 loc) · 1.8 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nistchempy"
authors = [
{name = "Ivan Yu. Chernyshov", email = "ivan.chernyshoff@gmail.com"}
]
maintainers = [
{name = "Ivan Yu. Chernyshov", email = "ivan.chernyshoff@gmail.com"}
]
description = "Unofficial Python tools for querying NIST Chemistry WebBook pages and extracting molecular-property records"
readme = {file = "README.md", content-type = "text/markdown"}
license = "MIT"
license-files = ["LICENSE.md"]
keywords = [
"NIST Chemistry WebBook",
"chemical data",
"molecular properties",
"spectral data",
"mass spectra",
"infrared spectra",
"gas chromatography",
"cheminformatics",
"scientific Python",
"physical chemistry",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
]
dependencies = [
"requests",
"pandas",
"beautifulsoup4",
"platformdirs"
]
requires-python = ">= 3.9"
dynamic = ["version"]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-gallery",
"sphinx-rtd-theme",
"notebook",
"nbconvert",
"nbsphinx",
]
dev = [
"build",
"pytest",
"coverage[toml]",
"sphinx",
"sphinx-gallery",
"sphinx-rtd-theme",
"notebook",
"nbconvert",
"nbsphinx",
]
structure = [
"rdkit",
]
[project.urls]
Documentation = "https://mucommons.github.io/NistChemPy/"
Repository = "https://github.com/muCommons/NistChemPy.git"
Issues = "https://github.com/muCommons/NistChemPy/issues"
[project.scripts]
nistchempy = "nistchempy.cli:main"
[tool.setuptools.dynamic]
version = {attr = "nistchempy.__version__"}