-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.37 KB
/
setup.py
File metadata and controls
38 lines (37 loc) · 1.37 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
from setuptools import setup, find_packages
setup(
name="gambit_plotting_tools",
version="1.0.0",
description="A collection of plotting tools developed for use with GAMBIT and GAMBIT-light, see gambitbsm.org.",
author="Anders Kvellestad",
author_email="anders.kvellestad@fys.uio.no",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/GambitBSM/gambit_plotting_tools",
packages=find_packages(),
entry_points = {
'console_scripts': ['print_confidence_level_table=gambit_plotting_tools.print_confidence_level_table:main',
'print_dataset_names=gambit_plotting_tools.print_dataset_names:main',
'print_high_loglike_points=gambit_plotting_tools.print_high_loglike_points:main'
]
},
include_package_data=True,
package_data={
'gambit_plotting_tools': ['gambit_logo_small.png'],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires='>=3.10',
install_requires=[
"numpy >= 1.23.0",
"matplotlib >= 3.8.0",
"scipy >= 1.10.1",
"h5py >= 3.9.0",
"pillow",
"tabulate",
],
license="BSD-3-Clause",
)