-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (50 loc) · 1.9 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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["dev*", "examples*"]
[project]
name = "pyqalloy"
version = "0.4.0"
authors = [
{ name="Adam Krajewski", email="[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Quality Assurance"
]
description = "PyQAlloy is a tool for detection of abnormal data in alloy datasets (and other chemical spaces), allowing removal of hard-to-find erros in the data which often introduce systematic errors throwing off machine learning and researchers alike. Its development is a part of ULTERA Project carried under the DOE ARPA-E ULTIMATE program that aims to develop a new generation of materials for turbine blades and related applications."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"pymatgen>=2024.7.18",
"numpy>=1.25.0,<3",
"tqdm>=4.63.0",
"natsort>=8.0.0",
"pymongo>=4.2",
"dnspython",
"scikit-learn",
"plotly",
"xlsxwriter",
"pandas",
"openpyxl",
"kaleido",
"montydb>=2.5.2"
]
[project.urls]
"Research Page" = "https://ultera.org"
"Homepage" = "https://pyqalloy.ultera.org"
"Bug Tracker" = "https://github.com/PhasesResearchLab/PyQAlloy/issues"