-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
42 lines (39 loc) · 1.14 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
[project]
name = "exaredox"
version = "0.0.1"
authors = [
{ name = "Logan Ward", email = "[email protected]" },
]
description = 'Using ExaMol to design molecules for organic flow batteris.'
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["HPC", "AI", "Workflows", "Quantum Chemistry", "Chemical Engineering", "Batteries"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: System :: Distributed Computing",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Chemistry",
"Programming Language :: Python :: 3",
]
dependencies = [
"examol>=0.0.5",
]
[tool.setuptools.packages.find]
include = ['exaredox*']
[project.urls]
repository = "https://github.com/exalearn/examol-redoxmers"
[project.optional-dependencies]
test = [
'flake8',
'pytest',
'pytest-forked',
'pytest-timeout',
'pytest-cov',
'pytest-skip-slow'
]