forked from AVSLab/basilisk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (45 loc) · 1.73 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
45
46
47
48
49
50
51
52
53
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=70.1.0", # Required for "bdist_wheel" to work correctly.
"setuptools-scm>=8.0", # Automatically include all Git-controlled files in sdist
"packaging>=22", # Due to incompatibility: https://github.com/pypa/setuptools/issues/4483
# Requirements for building Basilisk through conanfile
"conan>=2.0.5",
"cmake>=3.26",
"swig>=4.2.1" # Known to work with https://github.com/nightlark/swig-pypi/pull/120
]
[project]
name = 'Basilisk'
dynamic = ["version", "dependencies"]
requires-python = ">=3.8, <3.12"
readme = "README.md"
license = {file = "LICENSE"}
description = "Basilisk: an Astrodynamics Simulation Framework"
[project.urls]
homepage = 'https://avslab.github.io/basilisk/'
source = "https://github.com/AVSLab/basilisk"
tracker = "https://github.com/AVSLab/basilisk/issues"
# Define console scripts here
[project.scripts]
bskLargeData = "Basilisk.utilities.bskLargeData:main"
bskExamples = "Basilisk.utilities.bskExamples:main"
[tool.setuptools]
packages = [] # XXX: Leave blank, populated automatically by setup.py.
include-package-data = true
[tool.setuptools.package-data]
"*" = ["*.so", "*.dll", "*.lib", "*.pyd", "*.a", "*.dylib"] # Include all built objects.
Basilisk = [
"supportData/AlbedoData/*",
"supportData/AtmosphereData/*",
"supportData/DentonGEO/*",
"supportData/EphemerisData/*.tpc",
"supportData/EphemerisData/*.dat",
"supportData/EphemerisData/*.tls",
"supportData/EphemerisData/*.tsc",
"supportData/LocalGravData/*",
"supportData/MagneticField/*"
]
[tool.setuptools.dynamic]
version = {file = "docs/source/bskVersion.txt"}
dependencies = {file = "requirements.txt"}