-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
52 lines (48 loc) · 1.54 KB
/
setup.cfg
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
[metadata]
name = lbaf
version = attr: lbaf.__version__
author = P. P. Pébaÿ
author_email = [email protected]
description = Analysis framework for exploring, testing, and comparing load balancing strategies
long_description = file: DESCRIPTION.rst
long_description_content_type = text/x-rst
license_files = LICENSE
url = https://github.com/DARMA-tasking/LB-analysis-framework
project_urls =
Bug Tracker = https://github.com/DARMA-tasking/LB-analysis-framework/issues
keywords=HPC, concurrency, distributed-computing, parallelism, load-balancing
classifiers =
Programming Language :: Python :: 3.8
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Topic :: Scientific/Engineering
Development Status :: 5 - Production/Stable
[options]
zip_safe = False
package_dir =
= src
packages = find:
python_requires = >=3.8
install_requires =
numpy==1.24
scipy==1.10.1
PyYAML==6.0.1
Brotli==1.1.0
schema==0.7.7
colorama==0.4.6
typing_extensions==4.12.2
[options.package_data]
* = *.yaml
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
# Application
lbaf = lbaf:run
# Utils
lbaf-csv-2-json-converter = lbaf:csv_2_json_converter
lbaf-vt-data-extractor = lbaf:vt_data_extractor
lbaf-vt-data-files-validator-loader = lbaf:vt_data_files_validator_loader
lbaf-vt-data-files-validator = lbaf:vt_data_files_validator
lbaf-vt-data-files-maker = lbaf:vt_data_files_maker
lbaf-vt-data-stat-files-updater = lbaf:vt_data_stat_files_updater