-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (50 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (50 loc) · 1.62 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ilthermopy"
authors = [
{name = "Ivan Yu. Chernyshov", email = "ivan.chernyshoff@gmail.com"}
]
maintainers = [
{name = "Ivan Yu. Chernyshov", email = "ivan.chernyshoff@gmail.com"}
]
description = "Unofficial Python client for ILThermo 2.0 with SMILES-enriched ionic-liquid data for cheminformatics, thermodynamics, and ML workflows"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE.md"}
keywords = [
"ionic liquids",
"ILThermo",
"molecular thermodynamics",
"thermodynamic data",
"cheminformatics",
"chemical data",
"SMILES",
"machine learning",
"scientific Python",
"physical chemistry",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
]
dependencies = [
"importlib-resources>=1.1.0; python_version<'3.9'",
"requests",
"pandas"
]
requires-python = ">= 3.7"
dynamic = ["version"]
[project.urls]
Documentation = "https://mucommons.github.io/ILThermoPy/"
Repository = "https://github.com/muCommons/ILThermoPy"
Issues = "https://github.com/muCommons/ILThermoPy/issues"
Changelog = "https://mucommons.github.io/ILThermoPy/source/changelog.html"
Citation = "https://doi.org/10.5281/zenodo.20218373"
[tool.setuptools.dynamic]
version = {attr = "ilthermopy.__version__"}