Skip to content

Commit bbf890f

Browse files
authored
Merge pull request #3 from spapa013/main
v0.1.2
2 parents a1754b8 + 97417c3 commit bbf890f

File tree

3 files changed

+26
-28
lines changed

3 files changed

+26
-28
lines changed

enty/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.1'
1+
__version__ = '0.1.2'

pyproject.toml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0.0", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "enty"
7+
dynamic = ["version", "dependencies"]
8+
description = "A lightweight ORM with a simple interface."
9+
requires-python = ">=3.7"
10+
license = { file = "LICENSE" }
11+
authors = [
12+
{ name = "Stelios Papadopoulos", email = "[email protected]" },
13+
{ name = "Frank DeGuire" }
14+
]
15+
16+
[project.urls]
17+
Homepage = "https://github.com/atlab/enty"
18+
19+
[project.readme]
20+
file = "README.md"
21+
content-type = "text/markdown"
22+
23+
[tool.setuptools.dynamic]
24+
version = { attr = "enty.version.__version__" }
25+
dependencies = { file = "requirements.txt" }

setup.py

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

0 commit comments

Comments
 (0)