-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.29 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
[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 = "A simple Python wrapper around the ILThermo 2.0 database with SMILES support"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE.md"}
keywords = ["ionic liquids", "ilthermo", "nist", "api"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"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://ivanchernyshov.github.io/ILThermoPy/"
repository = "https://github.com/IvanChernyshov/ILThermoPy.git"
issues = "https://github.com/IvanChernyshov/ILThermoPy/issues"
[tool.setuptools.dynamic]
version = {attr = "ilthermopy.__version__"}