-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
52 lines (49 loc) · 1.65 KB
/
setup.py
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
#!/usr/bin/env python3
# SPDX-License-Identifier: BSD-3-Clause-Clear
# Copyright (c) 2019, The Numerical Algorithms Group, Ltd. All rights reserved.
from setuptools import setup, find_packages
from versionate import versionate
with open("README.md", "r") as fh:
long_desc = fh.read()
setup(
name="NAG-PyPOP",
version=versionate(),
url="https://github.com/numericalalgorithmsgroup/pypop.git",
author="Numerical Algorithms Group",
author_email="[email protected]",
description="Python notebook support for POP metrics and reports",
long_description=long_desc,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
packages=find_packages(),
python_requires=">=3.6",
install_requires=[
"numpy",
"matplotlib >= 2",
"pandas >= 0.24",
"jupyter",
"bokeh >= 1",
"tables",
"tqdm",
"ipyfilechooser",
"selenium",
"nbformat",
],
zip_safe=True,
include_package_data=True,
entry_points={
"console_scripts": [
"pypop-mpi-metrics = pypop.cli.cli:mpi_cli_metrics",
"pypop-hybrid-metrics = pypop.cli.cli:hybrid_cli_metrics",
"pypop-openmp-metrics = pypop.cli.cli:openmp_cli_metrics",
"pypop-preprocess = pypop.cli.cli:preprocess_traces",
"pypop-idealise-prv = pypop.cli.cli:dimemas_idealise_cli",
"pypop-copy-examples = pypop.cli.cli:copy_examples",
"pypop-gui = pypop.cli.cli:pypop_gui",
]
},
)