-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (35 loc) · 1.02 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ebsd-utils"
version = "1.0b4"
description = "Utilities for processing EBSD data"
readme = "README.md"
requires-python = ">= 3.12"
license = {file = "LICENSE"}
authors = [
{name = "Dr O.J. Whiteside", email = "[email protected]"},
{name = "Dr G. Hobler", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: GPU :: NVIDIA CUDA",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
dependencies = [
"numpy",
"scipy",
"numba",
"pillow",
]
[project.urls]
"Repository" = "https://github.com/james-whiteside/ebsd-utils"
"Thesis" = "https://doi.org/10.15126/thesis.901043"