Skip to content

Commit 77c9a7a

Browse files
committed
toml
1 parent ba6c959 commit 77c9a7a

File tree

4 files changed

+32
-27
lines changed

4 files changed

+32
-27
lines changed

MANIFEST

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
esoreader.py
2-
setup.cfg
3-
setup.py
2+
pyproject.tml
43
README.rst
54
LICENSE.TXT

pyproject.toml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[project]
2+
name = "esoreader"
3+
version = "1.2.3"
4+
description = "A module for parsing EnergyPlus *.eso files"
5+
readme = "README.md"
6+
license = { file = "LICENSE.txt" }
7+
authors = [
8+
{ name = "Daren Thomas", email = "[email protected]" }
9+
]
10+
keywords = ["simulation", "parsing", "energyplus", "pandas"]
11+
classifiers = [
12+
"Programming Language :: Python :: 3",
13+
"License :: OSI Approved :: MIT License",
14+
"Operating System :: OS Independent"
15+
]
16+
dependencies = [
17+
"pandas",
18+
"pytest"
19+
]
20+
21+
[project.urls]
22+
Homepage = "https://github.com/architecture-building-systems/esoreader"
23+
Repository = "https://github.com/architecture-building-systems/esoreader"
24+
Download = "https://github.com/architecture-building-systems/esoreader/archive/1.2.3.tar.gz"
25+
26+
[tool.setuptools]
27+
py-modules = ["esoreader"]
28+
29+
[build-system]
30+
requires = ["setuptools>=61.0", "wheel"]
31+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 0 additions & 3 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)