-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from microsoft/kmaziarz/versioning
Set up versioning
- Loading branch information
Showing
3 changed files
with
21 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
__pycache__/ | ||
|
||
# Package installation: | ||
.eggs/ | ||
*.egg-info/ | ||
|
||
# Model checkpoints: | ||
|
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,18 @@ | ||
# Changelog | ||
All notable changes to the 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). | ||
|
||
## [Unreleased] | ||
|
||
## [0.1.0] - 2022-04-11 | ||
|
||
This is the first public release, matching what was used for [the original paper](https://arxiv.org/abs/2103.03864). | ||
|
||
### Added | ||
- Full implementation of MoLeR as introduced in the paper | ||
- Reference implementation of CGVAE, not yet supported by the high-level model API | ||
|
||
[Unreleased]: https://github.com/microsoft/molecule-generation/compare/0.1.0...HEAD | ||
[0.1.0]: https://github.com/microsoft/molecule-generation/releases/tag/0.1.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,14 +7,15 @@ | |
|
||
setuptools.setup( | ||
name="molecule_generation", | ||
version="0.0.0", | ||
use_scm_version=True, | ||
license="MIT", | ||
author="Krzysztof Maziarz", | ||
author_email="[email protected]", | ||
description="Implementations of deep generative models of molecules.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/microsoft/molecule-generation/", | ||
setup_requires=["setuptools_scm"], | ||
python_requires="==3.7.*", | ||
install_requires=[ | ||
"dpu-utils>=0.2.13", | ||
|