-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
42 lines (37 loc) · 1.25 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[tool.black]
line-length = 79
target-version = ["py310"]
[tool.pytest.ini_options]
markers = [
"UNIFAC: classic UNIFAC model tests",
"PSRK: predictive SRK model tests",
"Joback: Joback-Reid contribution model tests",
"Dortmund: Dortmund-UNIFAC model tests",
"ConstantinouGani: Constantinou and Gani contribution model tests"
]
[project]
name = "ugropy"
version = "2.0.7"
authors = [{name = "Brandolín, Salvador Eduardo", email = "[email protected]"}]
license = {text = "The MIT License"}
readme = "README.md"
description = "Get UNIFAC functional groups of PubChem compounds or SMILES representation."
keywords = ["UNIFAC", "functional group", "thermodynamics", "chemical engineering"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
]
urls = {Homepage = "https://github.com/ipqa-research/ugropy"}
dependencies = [
'numpy >= 1.25.1, <2.0.0',
'pandas >= 2.0.3',
'pubchempy >= 1.0.4',
'rdkit >= 2023.9.5'
]