From cf20084de571b3b4600c46951d908d136508d7bf Mon Sep 17 00:00:00 2001 From: janssenhenning Date: Fri, 5 Aug 2022 15:44:33 +0200 Subject: [PATCH] Prepare first release Remove TODO --- README.md | 11 ----------- aiida_dataframe/__init__.py | 2 +- pyproject.toml | 9 ++++++++- 3 files changed, 9 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 38656bc..f0f140b 100644 --- a/README.md +++ b/README.md @@ -65,17 +65,6 @@ pytest -v # discover and run all tests See the [developer guide](http://aiida-dataframe.readthedocs.io/en/latest/developer_guide/index.html) for more information. -## TODO: - -- Add calcfunctions for common DataFrame operations to track provenance - - groupby - - ... -- Large DataFrames might be better stored in the file repository - - Investigate performance of different file serializations - - Keep two Data classes to let users choose where to store the data? -- Should the `df` property have a setter to mutate the DataFrame? - - Raise when the node is already stored - ## License MIT diff --git a/aiida_dataframe/__init__.py b/aiida_dataframe/__init__.py index 82c94e3..60c63b5 100644 --- a/aiida_dataframe/__init__.py +++ b/aiida_dataframe/__init__.py @@ -4,4 +4,4 @@ AiiDA data plugin for pandas DataFrame objects """ -__version__ = "0.1.0a0" +__version__ = "0.1.0" diff --git a/pyproject.toml b/pyproject.toml index 8302f2f..29e7553 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,12 @@ classifiers = [ "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", - "Development Status :: 3 - Alpha", + 'Development Status :: 4 - Beta', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', "Framework :: AiiDA" ] keywords = ["aiida", "plugin"] @@ -30,6 +35,8 @@ dependencies = [ [project.urls] Source = "https://github.com/janssenhenning/aiida-dataframe" +Home = "https://aiida-dataframe.readthedocs.io" +Documentation = "https://aiida-dataframe.readthedocs.io" [project.optional-dependencies] testing = [