-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
45 lines (43 loc) · 1.56 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "atlas-mpl-style"
version = "0.24.1"
description = "ATLAS style for Matplotlib 3.0+"
authors = [{name = "Beojan Stanislaus", email = "[email protected]"}]
readme = "README.rst"
license = {file = "LICENSE.md"}
keywords = ["plotting", "atlas", "matplotlib", "cern", "root", "hep", "high-energy-physics", "physics"]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Visualization",
# Pick your license as you wish (should match "license" above)
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
requires-python = ">=3.9"
dependencies = [
"matplotlib>=3",
"numpy",
"numexpr",
"pandas",
"importlib-resources>=6",
"packaging"
]
[project.urls]
Home = "https://github.com/beojan/atlas-mpl"
Documentation = "https://atlas-mpl.readthedocs.io/en/latest/"