-
Notifications
You must be signed in to change notification settings - Fork 2
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 #28 from amepproject/release-1.0.x
merge release 1.0.x into main
- Loading branch information
Showing
23 changed files
with
186 additions
and
80 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
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,35 @@ | ||
cff-version: 1.2.0 | ||
message: "If you use AMEP for a project that leads to a scientific publication, please acknowledge the use of AMEP within the body of your publication by citing L. Hecht, K.-R. Dormann, K. L. Spanheimer, M. Ebrahimi, M. Cordts, S. Mandal, A. K. Mukhopadhyay, and B. Liebchen, AMEP: The Active Matter Evaluation Package for Python, arXiv [Cond-Mat.Soft] (2024). Available at: http://arxiv.org/abs/2404.16533." | ||
title: 'AMEP: The Active Matter Evaluation Package' | ||
authors: | ||
- name: "Lukas Hecht and the AMEP development team" | ||
website: "https://amepproject.de/" | ||
type: software | ||
url: "https://amepproject.de/" | ||
repository-code: "https://github.com/amepproject/amep" | ||
preferred-citation: | ||
type: article | ||
authors: | ||
- family-names: "Hecht" | ||
given-names: "Lukas" | ||
orcid: "https://orcid.org/0000-0002-9619-4991" | ||
- family-names: "Dormann" | ||
given-names: "Kay-Robert" | ||
- family-names: "Spanheimer" | ||
given-names: "Kai Luca" | ||
- family-names: "Ebrahimi" | ||
given-names: "Mahdieh" | ||
- family-names: "Cordts" | ||
given-names: "Malte" | ||
- family-names: "Mandal" | ||
given-names: "Suvendu" | ||
- family-names: "Mukhopadhyay" | ||
given-names: "Aritra K." | ||
- family-names: "Liebchen" | ||
given-names: "Benno" | ||
orcid: "https://orcid.org/0000-0002-7647-6430" | ||
title: "AMEP: The Active Matter Evaluation Package for Python" | ||
year: 2024 | ||
doi: "10.48550/arXiv.2404.16533" | ||
journal: "arXiv" | ||
url: "https://arxiv.org/abs/2404.16533" |
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 |
---|---|---|
|
@@ -20,4 +20,4 @@ | |
""" | ||
AMEP version number. | ||
""" | ||
__version__ = "1.0.1" | ||
__version__ = "1.0.2" |
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
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
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,9 +1,9 @@ | ||
[project] | ||
name = "amep" | ||
version = "1.0.1" | ||
version = "1.0.2" | ||
license = {file="LICENSE"} | ||
authors = [ | ||
{name = "Lukas Hecht", email = "[email protected]"}, | ||
{name = "Lukas Hecht", email = "[email protected]"}, | ||
] | ||
description = "Active Matter Evaluation Package for data analysis of active matter simulations" | ||
readme = "README.md" | ||
|
@@ -17,26 +17,26 @@ keywords = [ | |
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Education", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.10", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Education", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"Topic :: Scientific/Engineering :: Visualization", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"Topic :: Scientific/Engineering :: Visualization", | ||
] | ||
dependencies = [ | ||
"h5py >= 3.7.0", | ||
"matplotlib >= 3.6.2", | ||
"numba >= 0.56.4", | ||
"numpy >= 1.21.6", | ||
"scipy >= 1.10.0", | ||
"scikit-image >= 0.20.0", | ||
"tqdm >= 4.65.0" | ||
"h5py >= 3.7.0", | ||
"matplotlib >= 3.6.2", | ||
"numba >= 0.56.4", | ||
"numpy >= 1.21.6", | ||
"scipy >= 1.10.0", | ||
"scikit-image >= 0.20.0", | ||
"tqdm >= 4.65.0" | ||
] | ||
|
||
[project.urls] | ||
|
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
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
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
Oops, something went wrong.