We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb1e961 commit 3deebb5Copy full SHA for 3deebb5
setup.py
@@ -1,11 +1,14 @@
1
import setuptools
2
3
+with open("app-version", "r", encoding="utf-8") as fh:
4
+ version = fh.read()
5
+
6
with open("README.md", "r", encoding="utf-8") as fh:
7
long_description = fh.read()
8
9
setuptools.setup(
10
name="db_wrapper",
- version="0.1.0-alpha",
11
+ version=version,
12
author="Andrew Chang-DeWitt",
13
author_email="andrew@andrew-chang-dewitt.dev",
14
description="Simple wrapper on aiopg to handle postgres connections & basic Models.",
0 commit comments