ai2pot 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ai2pot-0.0.1/PKG-INFO +21 -0
- ai2pot-0.0.1/README.md +5 -0
- ai2pot-0.0.1/ai2pot/__init__.py +0 -0
- ai2pot-0.0.1/ai2pot.egg-info/PKG-INFO +21 -0
- ai2pot-0.0.1/ai2pot.egg-info/SOURCES.txt +7 -0
- ai2pot-0.0.1/ai2pot.egg-info/dependency_links.txt +1 -0
- ai2pot-0.0.1/ai2pot.egg-info/top_level.txt +1 -0
- ai2pot-0.0.1/pyproject.toml +30 -0
- ai2pot-0.0.1/setup.cfg +4 -0
ai2pot-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ai2pot
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: AI2Pot: Ab Initio and Artificial Intelligence POTential
|
|
5
|
+
Author-email: Hanyu Liu <domainofbuaa@gmail.com>
|
|
6
|
+
License: GPL-3.0-or-later
|
|
7
|
+
Keywords: machine-learning interatomic potential,materials science,molecular dynamics,PyTorch,LAMMPS
|
|
8
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
9
|
+
Classifier: Intended Audience :: Science/Research
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering :: Chemistry
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
12
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
AI2Pot stands for **Ab Initio and Artificial Intelligence POTential**.
|
|
18
|
+
|
|
19
|
+
This package name is reserved for the AI2Pot project, a machine-learning interatomic-potential framework for materials modeling.
|
|
20
|
+
|
|
21
|
+
The full release is under active development.
|
ai2pot-0.0.1/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ai2pot
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: AI2Pot: Ab Initio and Artificial Intelligence POTential
|
|
5
|
+
Author-email: Hanyu Liu <domainofbuaa@gmail.com>
|
|
6
|
+
License: GPL-3.0-or-later
|
|
7
|
+
Keywords: machine-learning interatomic potential,materials science,molecular dynamics,PyTorch,LAMMPS
|
|
8
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
9
|
+
Classifier: Intended Audience :: Science/Research
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering :: Chemistry
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
12
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
AI2Pot stands for **Ab Initio and Artificial Intelligence POTential**.
|
|
18
|
+
|
|
19
|
+
This package name is reserved for the AI2Pot project, a machine-learning interatomic-potential framework for materials modeling.
|
|
20
|
+
|
|
21
|
+
The full release is under active development.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ai2pot
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "ai2pot"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "AI2Pot: Ab Initio and Artificial Intelligence POTential"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "GPL-3.0-or-later" }
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Hanyu Liu", email = "domainofbuaa@gmail.com" }
|
|
14
|
+
]
|
|
15
|
+
keywords = [
|
|
16
|
+
"machine-learning interatomic potential",
|
|
17
|
+
"materials science",
|
|
18
|
+
"molecular dynamics",
|
|
19
|
+
"PyTorch",
|
|
20
|
+
"LAMMPS"
|
|
21
|
+
]
|
|
22
|
+
classifiers = [
|
|
23
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
24
|
+
"Intended Audience :: Science/Research",
|
|
25
|
+
"Topic :: Scientific/Engineering :: Chemistry",
|
|
26
|
+
"Topic :: Scientific/Engineering :: Physics",
|
|
27
|
+
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
28
|
+
"Programming Language :: Python :: 3",
|
|
29
|
+
]
|
|
30
|
+
dependencies = []
|
ai2pot-0.0.1/setup.cfg
ADDED