forked from azogue/psychrochart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (45 loc) · 1.4 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
45
46
47
48
[tool.poetry]
name = "psychrochart"
version = "0.3.1"
description = "A python 3 library to make psychrometric charts and overlay information on them"
authors = ["Eugenio Panadero <eugenio.panadero@gmail.com>"]
packages = [
{ include = "psychrochart" }
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/azogue/psychrochart"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
keywords=["psychrometrics", "moist", "humid air", "climate control", "matplotlib"]
include = ["CHANGELOG.md"]
[tool.poetry.dependencies]
python = "^3.6"
matplotlib = "^3.1"
scipy = "^1.3"
psychrolib = "^2.2"
numpy = "^1.17"
[tool.poetry.dev-dependencies]
pytest = "^5.0"
pytest-sugar = "^0.9.2"
pytest-cov = "^2.7"
coveralls = "^1.8"
[tool.black]
exclude = "^.*/charts/.*$"
line-length = 79
target-version = ["py37"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"