-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Revert "refactor: split dev requirements out of main requirem…
…ents.txt"" This reverts commit 0576162.
- Loading branch information
1 parent
f8a2059
commit 74620d9
Showing
7 changed files
with
19 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
include requirements.txt | ||
include dev-requirements.txt | ||
include CMakeLists.txt | ||
|
||
graft pybind_interface | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
black==20.8b1 | ||
flynt~=0.60 | ||
pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
# Runtime requirements for the python 3 version of cirq. | ||
|
||
absl-py | ||
cirq-core | ||
numpy~=1.16 | ||
typing_extensions | ||
absl-py | ||
|
||
# Build and test requirements | ||
|
||
black==20.8b1 | ||
flynt~=0.60 | ||
pybind11 | ||
pytest | ||
typing_extensions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,6 +78,7 @@ def build_extension(self, ext): | |
|
||
|
||
requirements = open("requirements.txt").readlines() | ||
dev_requirements = open("dev-requirements.txt").readlines() | ||
|
||
description = "Schrödinger and Schrödinger-Feynman simulators for quantum circuits." | ||
|
||
|
@@ -95,6 +96,9 @@ def build_extension(self, ext): | |
author_email="[email protected]", | ||
python_requires=">=3.3.0", | ||
install_requires=requirements, | ||
extras_require={ | ||
"dev": dev_requirements, | ||
}, | ||
license="Apache 2", | ||
description=description, | ||
long_description=long_description, | ||
|