Skip to content

Commit

Permalink
Merge pull request #8 from microsoft/kmaziarz/versioning
Browse files Browse the repository at this point in the history
Set up versioning
  • Loading branch information
kmaziarz authored Apr 12, 2022
2 parents 0da24e7 + ce7d6d5 commit a8cb24f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
__pycache__/

# Package installation:
.eggs/
*.egg-info/

# Model checkpoints:
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
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
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit a8cb24f

Please sign in to comment.