-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
57 lines (50 loc) · 1.12 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
53
54
55
56
57
[metadata]
name = jade
version = attr: jade.__version__
author = JADE team
author_email = N.A.
description = JADE, a V&V tool for nuclear data libraries and transport codes
long_description = file: README.md
long_description_content_type = text/markdown
# url = https://github.com/pypa/sampleproject
# project_urls =
# Bug Tracker = https://github.com/pypa/sampleproject/issues
# classifiers =
# Programming Language :: Python :: 3
# License :: OSI Approved :: MIT License
# Operating System :: OS Independent
[options]
# package_dir =
# = mcparser
packages =
jade
jade.resources
python_requires = >=3.9
install_requires =
pandas
numjuggler
tqdm
xlsxwriter
openpyxl
matplotlib
scipy
python-docx
aspose-words
requests
f4enix >= 0.8.1
include_package_data = True
[options.packages.find]
where = jade
[options.entry_points]
console_scripts =
jade=jade.main:main
[options.package_data]
# Include any *.txt files found in the resources package (but not in its
# subpackages):
* = *.txt
[options.extras_require]
dev =
pre-commit
pytest
pytest-cov
isort