-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
70 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,5 @@ src/circuits/failed_circuit_*.chp | |
output.prof | ||
profiling_results.txt | ||
/docs/ | ||
main.py | ||
main.py | ||
/dist/ |
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,24 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Common Changelog](https://common-changelog.org/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [1.0.0] - 2024-09-19 | ||
|
||
### Added | ||
|
||
- Initial release of sdim | ||
|
||
### Changed | ||
|
||
- Move `sdim` module to parent level | ||
- Update `README.md` to include PyPI information. | ||
|
||
### Removed | ||
|
||
- Remove `/src/` folder | ||
|
||
|
||
[1.0.0]: https://github.com/events555/sdim/releases/tag/v1.0.0 |
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,35 +1,31 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
[tool.poetry] | ||
name = "sdim" | ||
version = "0.2.0" | ||
version = "1.0.0" | ||
description = "A tableau Clifford simulator for qudits" | ||
authors = [ | ||
{ name = "Steven Nguyen", email = "steven.n.nguyen@rutgers.edu" }, | ||
] | ||
urls = { | ||
"Homepage" = "https://events555.github.io/sdim/sdim.html", | ||
"Repository" = "https://github.com/events555/sdim", | ||
"Documentation" = "https://events555.github.io/sdim/sdim.html" | ||
} | ||
license = { file = "LICENSE" } | ||
authors = ["Steven Nguyen <steven.n.nguyen@rutgers.edu>"] | ||
license = "GPL-3.0-or-later" | ||
readme = "README.md" | ||
keywords = ["quantum computing", "Clifford simulator", "qudits"] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Operating System :: OS Independent", | ||
] | ||
dependencies = [ | ||
"numpy", | ||
"sympy", | ||
"cirq", | ||
"pdoc", | ||
"Diophantine", | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
[tool.poetry.urls] | ||
Homepage = "https://events555.github.io/sdim/sdim.html" | ||
Repository = "https://github.com/events555/sdim" | ||
Documentation = "https://events555.github.io/sdim/sdim.html" | ||
|
||
[project.optional-dependencies] | ||
test = ["cirq"] | ||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
numpy = "*" | ||
sympy = "*" | ||
cirq = "*" | ||
pdoc = "*" | ||
Diophantine = "*" | ||
|
||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |