-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 1.05 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
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project.urls]
Repository = 'https://github.com/ErikPGJ/python_solo'
'Bug Tracker' = 'https://github.com/ErikPGJ/python_solo/issues'
[project]
name = 'irfu-erikpgjohansson-solo'
description = 'Miscellaneous Solar Orbiter code, mostly for mirroring Solar Orbiter ARchive (SOAR) data'
version = '1.0.0'
readme = {file = 'README.md', content-type = 'text/markdown'}
license = {file = 'LICENSE.md', content-type = 'text/markdown'}
authors = [
{name = 'Erik P G Johansson', email = 'erik.johansson@irf.se'},
]
maintainers = [
{name = 'Erik P G Johansson', email = 'erik.johansson@irf.se'},
]
keywords = [
'Solar Orbiter', 'SolO',
'Solar Orbiter Archive', 'SOAR',
'ESA',
]
classifiers = [
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
]
dependencies = [
'codetiming',
'numpy>=2.0.2',
]
requires-python = '>=3.12'