-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (36 loc) · 936 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "hrcl_jobs"
version = "1.8.1"
authors = [
{ name="Austin M. Wallace", email="awallace43@gatech.edu" },
]
description = "Runs python functions on worker threads with main thread communicating with sql/postgresql db"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib",
"qm_tools_aw",
"numpy>=1.20.0",
"pandas>=1.4.3"
]
[project.optional-dependencies]
psi4_calculations = [
"psi4>=1.7",
]
ad4_vina_calculations = [
"autodock-vina",
]
openmm_calculations = [
"openmm",
]
[project.urls]
"Homepage" = "https://github.com/Awallace3/hierarchical_python_jobs"
"Bug Tracker" = "https://github.com/Awallace3/hierarchical_python_jobs/issues"