-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (52 loc) · 1.73 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "SEL_Rdb"
authors = [
{name = "AOUF Nihed", email = "aouf_nihed@esgee-oran.dz"},
]
description = "A comprehensive toolkit for working with SEL (Schweitzer Engineering Laboratories) .rdb relay database files"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.6"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"olefile",
"openpyxl",
]
dynamic = ["version"]
[project.optional-dependencies]
docs = [
"mkdocs>=1.4.0",
"mkdocs-material>=8.0.0",
]
dev = [
"mkdocs>=1.4.0",
"mkdocs-material>=8.0.0",
]
[project.urls]
Homepage = "https://github.com/AoufNihed/SEL_RDB"
"Bug Tracker" = "https://github.com/AoufNihed/SEL_RDB/issues"
Documentation = "https://aoufnihed.github.io/SEL_RDB/"
[project.scripts]
sel-rdb-analyze = "sel_rdb.rdb_analyzer:main"
sel-rdb-list = "sel_rdb.list_rdb_streams:main"
sel-rdb-extract-logic = "sel_rdb.extract_logic_section:main"
sel-rdb-create = "sel_rdb.create_rdb_template:main"
[tool.setuptools_scm]