-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
44 lines (36 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
44
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "fb8"
dynamic = ["version"]
authors = [
{name = "Tianlu Yuan", email = "[email protected]"},
{name = "Daniël Fraenkel", email = "[email protected]"},
{name = "Austin Schneider", email = "[email protected]"},
]
maintainers = [
{name = "Tianlu Yuan", email = "[email protected]"}
]
description = "Implementation of FB8, a generalization of the Kent (1982) and Bingham-Mardia (1978) distributions on a sphere"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">= 3.8"
dependencies = [
"numpy >= 1.17",
"scipy"
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
[project.optional-dependencies]
plotting = ["matplotlib", "healpy"]
[project.urls]
Repository = "https://github.com/tianluyuan/sphere.git"
[tool.setuptools.packages.find]
exclude = ["paper*", "fig*", "build*"]
[tool.setuptools_scm]