-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (26 loc) · 902 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
[build-system]
requires = ["numpy","matplotlib","scipy","setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "AKCK_LFF"
version = "1.0.1"
authors = [
{ name="Aaron Kaplan", email="[email protected]" },
{ name="Carl Kukkonen", email="[email protected] "},
]
description = "Analytic models for the local field factors of the interacting uniform electron gas"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = { file = "LICENSE" }
dependencies = ['numpy', 'scipy', 'matplotlib']
#dynamic = ["version","readme"]
[project.urls]
"Homepage" = "https://github.com/esoteric-ephemera/UEG_LFF"
"Bug Tracker" = "https://github.com/esoteric-ephemera/UEG_LFF/issues"
#[tool.setuptools.dynamic]
#version = {attr = "AKCK_LFF.VERSION"}
#readme = {file = "README.md"}