-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
37 lines (31 loc) · 1.03 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "PyTransit"
description = 'Fast and painless exoplanet transit light curve modelling.'
authors=[{name='Hannu Parviainen', email='hpparvi@gmail.com'}]
classifiers=[
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
keywords = ['astronomy', 'astrophysics', 'exoplanets']
requires-python = ">= 3.10"
readme = "README.md"
license = {text = "GPLv2"}
dynamic = ["version", "dependencies"]
[project.urls]
homepage = 'https://github.com/hpparvi/PyTransit'
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "pytransit.__version__"}
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["pytransit"]
namespaces = true