-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (42 loc) · 1.69 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
54
55
56
57
# (c) Copyright 2022 CERN for the benefit of the LHCb Collaboration.
#
# This software is distributed under the terms of the GNU General Public
# Licence version 3 (GPL Version 3), copied verbatim in the file "LICENCE".
#
# In applying this licence, CERN does not waive the privileges and immunities
# granted to it by virtue of its status as an Intergovernmental Organization
# or submit itself to any jurisdiction.
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "python"}
packages = ["SQLamarr"]
[project]
name = "SQLamarr"
description = "The stand-alone ultra-fast simulation option for LHCb"
readme = "README.md"
authors = [
{name = "Lucio Anderlini", email = "[email protected]"},
{name = "Matteo Barbetti", email = "[email protected]"},
]
license = {text = "GPL-3"}
keywords = ["lhcb", "fast-simulation", "simulation", "hep", "physics"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: SQL",
"Programming Language :: C++",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: Console",
]
version = "0.0c7"
dependencies = ["hepmc3"]
[tool.setuptools.package-data]
myModule = ["*.h"]
[project.urls]
"Homepage" = "https://lamarrsim.github.io/SQLamarr/"
"Source" = "https://github.com/LamarrSim/SQLamarr"