We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0ab693 commit 2853fb0Copy full SHA for 2853fb0
1 file changed
setup.py
@@ -1,16 +1,23 @@
1
"""Setup file for prototype template."""
2
3
import setuptools
4
+import os
5
6
with open("README.md", encoding="utf-8") as f:
7
long_description = f.read()
8
9
with open("requirements.txt") as f:
10
install_requires = f.read().splitlines()
11
12
+here = os.path.abspath(os.path.dirname(__file__))
13
+version = {}
14
+with open(os.path.join(here, "vqls_prototype", "__version__.py")) as f:
15
+ exec(f.read(), version)
16
+
17
setuptools.setup(
18
name="vqls_prototype",
- description="Repository for a quantum prototype",
19
+ version=version["__version__"],
20
+ description="Prototype for a Quantum Linear Solver",
21
long_description=long_description,
22
long_description_content_type="text/markdown",
23
packages=setuptools.find_packages(),
0 commit comments