-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
43 lines (40 loc) · 1.29 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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "plexos2duckdb"
version = "0.1.0b9"
description = "A command line tool to convert PLEXOS solution files to a DuckDB database."
readme = "README.md"
requires-python = ">=3.9"
license = "BSD-3-Clause"
authors = [
{ name = "Dheepak Krishnamurthy", email = "1813121+kdheepak@users.noreply.github.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
keywords = ["plexos", "duckdb", "cli", "energy"]
dependencies = ["duckdb>=1.4.0", "rich>=13.0.0"]
[project.urls]
Homepage = "https://github.com/epri-dev/plexos2duckdb"
Repository = "https://github.com/epri-dev/plexos2duckdb"
Documentation = "https://github.com/epri-dev/plexos2duckdb"
Issues = "https://github.com/epri-dev/plexos2duckdb/issues"
[tool.maturin]
bindings = "bin"
manifest-path = "Cargo.toml"
python-source = "python"
strip = true