-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (47 loc) · 1.64 KB
/
setup.py
File metadata and controls
53 lines (47 loc) · 1.64 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
41
42
43
44
45
46
47
48
49
50
51
52
53
# copyright ################################# #
# This file is part of the BIHC Package. #
# Copyright (c) CERN, 2024. #
# ########################################### #
from pathlib import Path
from setuptools import find_packages, setup
# read version
version_file = Path(__file__).parent / "bihc/_version.py"
dd = {}
with open(version_file.absolute(), "r") as fp:
exec(fp.read(), dd)
__version__ = dd["__version__"]
# read long_description
long_description = (Path(__file__).parent / "README.md").read_text(encoding="utf-8")
#########
# Setup #
#########
setup(
name="bihc",
version=__version__,
description="BIHC: Beam-Induced Heating Computation package",
author="Elena de la Fuente, Francesco Giordano, Leonardo Sito",
author_email="elena.de.la.fuente.garcia@cern.ch",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
url="https://github.com/ImpedanCEI/BIHC",
project_urls={"Bug Tracker": "https://github.com/ImpedanCEI/BIHC/issues"},
install_requires=[
"numpy",
"matplotlib",
"scipy",
"tqdm",
],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
],
)