-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 1 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
[build-system]
requires = ["flit_core >=3,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
dist-name = 'itsh5py'
module = 'itsh5py'
author = 'Max Elfner <[email protected]>'
requires = [
'PyYAML > 5.4',
'pandas > 1.3',
'numpy > 1.19',
'h5py > 3.2',
]
requires-python = '>=3.7'
license = 'MIT'
home-page = "https://github.com/max3-2/itsh5py"
description-file = 'README.md'
keywords = 'h5py, hdf, data storage'
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: MIT License'
]
[tool.flit.metadata.requires-extra]
doc = ['Sphinx', 'Furo', 'MyST-parser']
[tool.flit.metadata.urls]
Documentation = 'https://itsh5py.readthedocs.io/en/latest/'
Source = 'https://github.com/max3-2/itsh5py'