-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (80 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
87 lines (80 loc) · 1.88 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
85
86
87
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "omf"
version = "1.0.0"
description = "An Open Modeling Framework (OMF) for power systems simulation."
readme = "readme.md"
requires-python = ">=3.9"
license = { file = "License-GPLv2.txt" }
authors = [
{ name = "David Pinney", email = "david.pinney@nreca.coop" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy>=1.20,<2",
"numpy-financial",
"Flask>=2.0.0",
"Markdown>=3.3",
"boto3",
"networkx",
"passlib>=1.6.2",
"matplotlib",
"requests>=2.20",
"pandas>=0.24.2",
"pytz",
"pulp>=1.6.8",
"scipy>=1.4.1",
"plotly>=4.0.0",
"scikit-learn>=0.23.0",
"pyproj",
"gunicorn",
"OpenDSSDirect.py[extras]",
"seaborn",
"pandapower>=3.1.2,<3.2",
"matpowercaseframes",
"openpyxl",
"shapely",
"nrel-pysam>=7.0.0",
"imageio-ffmpeg",
"access-parser",
]
[project.optional-dependencies]
ml = [
"tensorflow",
"prophet",
]
[project.urls]
Homepage = "https://omf.coop/"
Repository = "https://github.com/nreca-bts/omf"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
omf = ["**/*"]
[tool.setuptools.exclude-package-data]
omf = [
".git/**",
"__pycache__/**",
"*.py[cod]",
"data/Model/admin/**",
"scratch/**",
"build/**",
"dist/**",
"omf.egg-info/**",
]
[tool.setuptools.packages.find]
include = ["omf*"]
exclude = ["omf.scratch*", "omf.build*", "omf.dist*"]