Skip to content

Commit b234b44

Browse files
author
Axel Dahlberg
authored
Merge pull request #7 from SoftwareQuTech/Develop
Added requirements
2 parents d43581d + 5255895 commit b234b44

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

cqc/__init__.py

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

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
with open("README.md", 'r') as f:
1919
long_description = f.read()
2020

21+
with open("requirements.txt", 'r') as f:
22+
install_requires = [line.strip() for line in f.readlines()]
23+
2124
setuptools.setup(
2225
name="cqc",
2326
version=version,
@@ -29,6 +32,7 @@
2932
url="https://github.com/SoftwareQuTech/CQC-Python",
3033
include_package_data=True,
3134
packages=setuptools.find_packages(),
35+
install_requires=install_requires,
3236
classifiers=[
3337
"Programming Language :: Python :: 3",
3438
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)