forked from NREL/alfalfa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (41 loc) · 1.28 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
41
42
43
44
[tool.poetry]
name = "alfalfa"
version = "0.1.0"
description = "Alfalfa is a web based software service that implements a virtual building control system using an OpenStudio/EnergyPlus simulation or FMU as a backend."
authors = [
'Kyle Benne <[email protected]>',
'Cory Mosiman <[email protected]>',
'Anya Petersen <[email protected]>',
'Brian Ball <[email protected]>',
'Nicholas Long <[email protected]>',
'Willy Bernal <[email protected]>',
]
[tool.poetry.dependencies]
python = "^3.6.1"
importlib-metadata = "3.4.0"
boto3 = "1.17.8"
mlep = "0.1.1.dev3"
pymongo = "3.11.3"
redis = "3.5.3"
requests = "2.25.1"
symfit = "0.5.3"
# These libraries are used for the data generator/testcase. They are pinned to older versions
# as the min python version is 3.7
pandas = "0.24.2"
scipy = "1.5.4"
numpy = "1.19.5"
influxdb = "5.3.0"
[tool.poetry.dev-dependencies]
alfalfa-client = "0.1.0.dev7"
#alfalfa-client = {git = "https://[email protected]/nrel/alfalfa-client.git", rev = "develop"}
autopep8 = "^1.4.4"
pre-commit = "^2.10.1"
pytest = "6.2.2"
pycodestyle = "^2.5.0"
pytest-cov = "2.11.1"
pytest-docker-compose = "3.2.1"
pytest-timeout = "1.4.2"
tox = "^3.21.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"