-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migrate to pyproject.toml and update license
- Loading branch information
1 parent
cc507e4
commit d58b60f
Showing
3 changed files
with
43 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "fb8" | ||
version = "1.2.3" | ||
authors = [ | ||
{name = "Daniël Fraenkel", email = "[email protected]"}, | ||
{name = "Austin Schneider", email = "[email protected]"}, | ||
{name = "Tianlu Yuan", 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 = {} |