-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (75 loc) · 1.97 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (75 loc) · 1.97 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "epics"
version = "1.0.1.dev2"
description = "Python library for reading and converting EPICS (Electron Photon Interaction Cross Sections) nuclear data"
readme = "README.md"
license = {text = "BSD-3-Clause"}
requires-python = ">=3.11"
authors = [
{name = "Melek Derman", email = "dermanm@oregonstate.edu"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Physics",
"Typing :: Typed",
]
keywords = ["nuclear data", "EEDL", "EPDL", "EADL", "EPICS", "ENDF", "HDF5", "Monte Carlo"]
dependencies = [
"numpy>=1.24",
"h5py>=3.8",
"endf>=0.1",
]
[project.optional-dependencies]
download = [
"requests>=2.28",
"beautifulsoup4>=4.11",
]
pandas = [
"pandas>=2.0",
]
plot = [
"matplotlib>=3.7",
]
all = [
"epics[download,pandas,plot]",
]
dev = [
"epics[all]",
"pytest>=7.0",
"ruff>=0.4",
"sphinx>=7.0",
"sphinx-rtd-theme>=2.0",
"myst-parser>=3.0",
]
[project.urls]
Homepage = "https://github.com/melekderman/PyEPICS"
Documentation = "https://pyepics.readthedocs.io"
Repository = "https://github.com/melekderman/PyEPICS"
Issues = "https://github.com/melekderman/PyEPICS/issues"
[project.scripts]
epics = "pyepics.cli:main"
[tool.setuptools.packages.find]
include = ["pyepics*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
filterwarnings = [
"ignore::DeprecationWarning:pyepics.pyeedl_compat",
]
[tool.ruff]
target-version = "py311"
line-length = 100
extend-exclude = ["tests"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]
ignore = ["E501"]