Skip to content

Commit

Permalink
Comply with PEP518 (#119)
Browse files Browse the repository at this point in the history
* Build: Add initial pyproject

* Maint: Clean up unnecessary files

Co-authored-by: Irfan Alibay <IAlibay@users.noreply.github.com>

* Switch to versioningit (#121)

* Switch to versioningit with updated method in RTD.

* test: pip install importlib-metadata in tests step

* Fix project name

Co-authored-by: Irfan Alibay <IAlibay@users.noreply.github.com>

* Add AUTHORS file

---------

Co-authored-by: Irfan Alibay <IAlibay@users.noreply.github.com>
  • Loading branch information
ojeda-e and IAlibay authored Jan 2, 2024
1 parent 5d2de99 commit e368c67
Show file tree
Hide file tree
Showing 11 changed files with 115 additions and 3,094 deletions.
12 changes: 0 additions & 12 deletions .lgtm.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build:

python:
install:
- method: setuptools
- method: pip
path: .

conda:
Expand Down
14 changes: 14 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

All contributing authors are listed in this file below. Repository
history available in https://github.com/MDAnalysis/membrane-curvature.

Chronological list of authors
-----------------------------

2021
- Estefania Barreto-Ojeda
- Oliver Beckstein
- Irfan Alibay

2023
- Lily Wang
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Membrane Curvature
MembraneCurvature is an [MDAnalysis] tool to calculate membrane curvature from
Molecular Dynamics simulations.

> **Interested in becoming a maintainer?** We welcome your passion and expertise to help shape and grow this open-source project! Please contact estefania@ojeda-e.com for more details.
Features
--------------

Expand Down
1 change: 0 additions & 1 deletion _config.yml

This file was deleted.

12 changes: 3 additions & 9 deletions membrane_curvature/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,6 @@
from .curvature import mean_curvature, gaussian_curvature
from .base import MembraneCurvature

# Handle versioneer
from ._version import get_versions
versions = get_versions()
__version__ = versions['version']
__git_revision__ = versions['full-revisionid']
del get_versions, versions

from . import _version
__version__ = _version.get_versions()['version']
# Handle version
from importlib.metadata import version
__version__ = version("membrane_curvature")
Loading

0 comments on commit e368c67

Please sign in to comment.