-
Notifications
You must be signed in to change notification settings - Fork 41
/
pyproject.toml
43 lines (39 loc) · 1.1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyuff"
version = "2.4.4"
authors = [{name = "Primož Čermelj, Janko Slavič", email = "[email protected]"}]
maintainers = [{name = "Janko Slavič et al.", email = "[email protected]"}]
license = "MIT"
description = "UFF (Universal File Format) read/write."
readme = "README.rst"
keywords = ['UFF', 'UNV', 'Universal File Format', 'read/write']
requires-python = ">=3.10"
dependencies = [
"numpy",
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 3.10',
"License :: OSI Approved :: MIT License",
]
[project.optional-dependencies]
dev = [
"sphinx",
"twine",
"wheel",
"build",
"pytest",
"sphinx-rtd-theme",
"sphinx-copybutton",
]
[project.urls]
homepage = "https://github.com/ladisk/pyuff"
documentation = "https://pyuff.readthedocs.io/en/latest/"
source = "https://github.com/ladisk/pyuff"
[tool.hatch.build.targets.sdist]
include = ["pyuff/*"]