forked from MDAnalysis/panedr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First attempt: panedr and panedrlite (MDAnalysis#42)
PR MDAnalysis#42 ## Work done in this PR * Creates the panedr and panedrlite packages * panedrlite is panedr without pandas * panedr import panedrlite and pandas * update CI accordingly * fix some type hint issues
- Loading branch information
Showing
12 changed files
with
183 additions
and
42 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
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,3 @@ | ||
panedrlite[pandas] | ||
numpy>=1.19.0 | ||
pbr |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ author_email = [email protected] | |
summary = Read and manipulate Gromacs energy files | ||
license = LGPL | ||
description_file = | ||
README.rst | ||
../README.rst | ||
long_description_content_type = text/x-rst | ||
home_page = https://github.com/MDAnalysis/panedr | ||
python_requires = >=3.6 | ||
|
File renamed without changes.
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,7 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
import pbr.version | ||
__version__ = pbr.version.VersionInfo('panedrlite').release_string() | ||
del pbr | ||
|
||
from .panedr import edr_to_df, edr_to_dict, read_edr |
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
File renamed without changes.
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,31 @@ | ||
[metadata] | ||
name = panedrlite | ||
author = Jonathan Barnoud | ||
author_email = [email protected] | ||
summary = Read and manipulate Gromacs energy files | ||
license = LGPL | ||
description_file = | ||
../README.rst | ||
long_description_content_type = text/x-rst | ||
home_page = https://github.com/MDAnalysis/panedr | ||
python_requires = >=3.6 | ||
classifier = | ||
Development Status :: 4 - Beta | ||
Intended Audience :: Developers | ||
Topic :: Scientific/Engineering :: Bio-Informatics | ||
Topic :: Scientific/Engineering :: Chemistry | ||
Topic :: Scientific/Engineering :: Physics | ||
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+) | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Operating System :: OS Independent | ||
|
||
[extras] | ||
test = | ||
six | ||
pytest | ||
pandas = | ||
pandas |
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,6 @@ | ||
from setuptools import setup | ||
|
||
setup(name="panedr", | ||
setup_requires=['pbr'], | ||
pbr=True, | ||
) |
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