-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
62 lines (57 loc) · 2.09 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[tool.black]
line-length = 79
target-version = ["py310"]
[tool.pytest.ini_options]
markers = [
# Models markers
"unifac: classic UNIFAC model tests",
"dortmund: Dortmund UNIFAC model tests",
"psrk: predictive SRK model tests",
"joback: Joback-Reid contribution model tests",
"agani: Abdulelah-Gani contribution model tests",
# Tests cases markers
"acids: tests cases for acids",
"alcohols: tests cases for alcohols",
"aldehydes: tests cases for aldehydes",
"aromatics: tests cases for aromatics",
"complex: tests cases for complex compounds",
"epoxides: tests cases for epoxides",
"esters: tests cases for esters",
"ethers: tests cases for ethers",
"halogens: tests cases for halogens",
"hydrocarbons: tests cases for hydrocarbons",
"unsaturated_hydrocarbons: tests cases for insaturated hydrocarbons",
"ketones: tests cases for ketones",
"nitrogen: tests cases for nitrogen compounds",
"particulars: tests cases for particular compounds",
"silicon: tests cases for silicon compounds",
"sulfur: tests cases for sulfur compounds",
]
[project]
name = "ugropy"
version = "3.0.5"
authors = [{name = "Brandolín, Salvador Eduardo", email = "salvadorebrandolin@mi.unc.edu.ar"}]
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 = [
"rdkit >= 2023.9.5",
"pandas >= 2.0.3",
"pubchempy >= 1.0.4",
"pint >= 0.22",
"pulp >= 2.9.0; sys_platform != 'darwin'",
"pulp == 2.9.0; sys_platform == 'darwin'",
]