-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (33 loc) · 1.08 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kultools"
version = "0.4"
authors = [
{ name="Kulkarni Research Group", email="arkulkarni@ucdavis.edu" },
]
description = "Utility package for atomistic simulations using ASE and VASP"
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy>=1.23",
"scipy>=1.3.1",
"ase>=3.22"
]
[project.urls]
"Homepage" = "https://github.com/kul-group/kultools"
"Bug Tracker" = "https://github.com/kul-group/kultools/issues"