-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated setup to target pyglotaran v0.3.0 release
In preparation for a pinned v0.3.0 release to go with the pyglotaran v0.3.0 release. Added basic instruction to README
- Loading branch information
Showing
3 changed files
with
42 additions
and
19 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 |
---|---|---|
@@ -1,3 +1,29 @@ | ||
# pyglotaran_extras | ||
|
||
Supplementary package for pyglotaran with (example) plotting code. | ||
Supplementary package for pyglotaran with (example) plotting code for use with the pyglotaran package, version 0.3.0. | ||
Can be installed as a python package from sources, but is not released on pypi or conda. | ||
|
||
## Installation | ||
|
||
Prerequisites: | ||
|
||
- Python 3.8 | ||
- Python package `pyglotaran` v0.3.0 | ||
|
||
Note for Windows Users: The easiest way to get python for Windows is via [Anaconda](https://www.anaconda.com/) | ||
|
||
### Stable Release | ||
|
||
To install pyglotaran_examples from sources, either clone this repository or download the latest release, then run this command in your terminal: | ||
|
||
```shell | ||
git clone https://github.com/glotaran/pyglotaran_extras.git | ||
cd pyglotaran_extras | ||
pip install -e . | ||
``` | ||
|
||
or directly | ||
|
||
```shell | ||
pip install git+https://github.com/glotaran/pyglotaran_extras.git | ||
``` |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
from setuptools import setup | ||
|
||
install_requires = [ | ||
"pyglotaran>=0.2.0", | ||
"pyglotaran>=0.3.0,<0.4.0", | ||
"jupyterlab>=2.0.0", | ||
"matplotlib>=3.0.0", | ||
] | ||
|
@@ -13,20 +13,18 @@ | |
|
||
setup( | ||
name="pyglotaran_extras", | ||
version="0.2.0", | ||
version="0.3.0", | ||
description="Supplementary package for pyglotaran with (example) plotting code.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/glotaran/pyglotaran_extras", | ||
classifiers=[ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
|
@@ -36,7 +34,7 @@ | |
author_email="""[email protected]""", | ||
license="MIT", | ||
project_urls={ | ||
"GloTarAn Ecosystem": "http://glotaran.org", | ||
"GloTarAn Ecosystem": "https://glotaran.org", | ||
"Source": "https://github.com/glotaran/pyglotaran_extras", | ||
"Tracker": "https://github.com/glotaran/pyglotaran_extras/issues", | ||
}, | ||
|