-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 1.26 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (38 loc) · 1.26 KB
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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "distlink-python"
version = "0.2.0"
description = "Pure-Python port of the distlink MOID and linking-coefficient library"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Roman V. Baluev" },
{ name = "Denis V. Mikryukov" },
]
maintainers = [
{ name = "Troy D. Rockwood" },
]
keywords = ["astronomy", "astrodynamics", "MOID", "orbital mechanics"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Astronomy",
]
[project.urls]
Repository = "https://github.com/troyrock/distlink-python"
Issues = "https://github.com/troyrock/distlink-python/issues"
"Original C++ project" = "https://sourceforge.net/projects/distlink/"
"C++ parity oracle" = "https://github.com/troyrock/distlink-cpp"
[tool.setuptools]
py-modules = ["distlink"]