-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
executable file
·40 lines (37 loc) · 1.08 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nygrid"
version = "0.1.2" # Update this to match your version
description = "A python version of the NYgrid model"
readme = "README.md" # Adjust if your README file is named differently
license = {text = "MIT License"}
authors = [
{name = "The NYgrid-python Developers", email = "[email protected]"}
]
maintainers = [
{name = "Bo Yuan", email = "[email protected]"}
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3 :: Only",
]
keywords = ["Power system", "Renewable energy", "Optimization"]
dependencies = [
"numpy",
"scipy",
"pandas",
"pyomo",
"pypower",
"matplotlib",
"openpyxl"
]
requires-python = ">=3.7"
urls = {homepage = "https://github.com/boyuan276/NYgrid-python"}
[tool.setuptools]
packages = ["nygrid"] # If your package is a directory named nygrid
[project.optional-dependencies]
dev = ["pytest", "black"]