Unverified Commit 291da1ea authored by msbaines's avatar msbaines Committed by GitHub
Browse files

[fix] add build dependency on torch (#21)

parent 5a2b5720
......@@ -6,3 +6,6 @@
.mypy_cache/
*.egg-info/
build/
dist/
......@@ -4,6 +4,6 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.0.0] - 2020-07-31
## [0.0.1] - 2020-07-31
- Initial release.
include LICENSE
include requirements.txt
......@@ -3,7 +3,7 @@
# This source code is licensed under the BSD license found in the
# LICENSE file in the root directory of this source tree.
__version__ = "0.0.0"
__version__ = "0.0.1"
################################################################################
# Import most common subpackages
......
[build-system]
requires = [
"setuptools >= 40.6.2",
"torch >= 1.4.0",
"wheel >= 0.30.0"
]
build-backend = "setuptools.build_meta"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment