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.
2 parents d43581d + 5255895 commit b234b44Copy full SHA for b234b44
cqc/__init__.py
@@ -1 +1 @@
1
-__version__ = '3.0.0'
+__version__ = '3.0.1'
setup.py
@@ -18,6 +18,9 @@
18
with open("README.md", 'r') as f:
19
long_description = f.read()
20
21
+with open("requirements.txt", 'r') as f:
22
+ install_requires = [line.strip() for line in f.readlines()]
23
+
24
setuptools.setup(
25
name="cqc",
26
version=version,
@@ -29,6 +32,7 @@
29
32
url="https://github.com/SoftwareQuTech/CQC-Python",
30
33
include_package_data=True,
31
34
packages=setuptools.find_packages(),
35
+ install_requires=install_requires,
36
classifiers=[
37
"Programming Language :: Python :: 3",
38
"License :: OSI Approved :: MIT License",
0 commit comments