Skip to content

Commit 99fc882

Browse files
committed
Update README
1 parent 939524a commit 99fc882

File tree

2 files changed

+32
-28
lines changed

2 files changed

+32
-28
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ for the original description of the normalized Morlet wavelet transform see the
6666

6767
Installation
6868
------------
69+
Install the latest stable version with pip:
70+
```bash
71+
pip install behavelet
72+
```
6973

7074
Install the development version with pip:
7175
```bash

setup.py

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -21,35 +21,35 @@
2121
from setuptools import setup, find_packages
2222

2323
DESCRIPTION = "behavelet: a wavelet transform for mapping behavior"
24-
LONG_DESCRIPTION = """\
25-
behavelet is a Python implementation of the normalized Morlet wavelet transform for behavioral mapping from [Berman et al. (2014)](https://doi.org/10.1098/rsif.2014.0672).
26-
"""
27-
28-
DISTNAME = 'behavelet'
29-
MAINTAINER = 'Jacob Graving <jgraving@gmail.com>'
30-
MAINTAINER_EMAIL = 'jgraving@gmail.com'
31-
URL = 'https://github.com/jgraving/behavelet'
32-
LICENSE = 'Apache 2.0'
33-
DOWNLOAD_URL = 'https://github.com/jgraving/behavelet.git'
34-
VERSION = '0.0.1'
24+
DISTNAME = "behavelet"
25+
MAINTAINER = "Jacob Graving <jgraving@gmail.com>"
26+
MAINTAINER_EMAIL = "jgraving@gmail.com"
27+
URL = "https://github.com/jgraving/behavelet"
28+
LICENSE = "Apache 2.0"
29+
DOWNLOAD_URL = "https://github.com/jgraving/behavelet.git"
30+
VERSION = "0.0.1"
3531

3632

3733
if __name__ == "__main__":
3834

39-
setup(name=DISTNAME,
40-
author=MAINTAINER,
41-
author_email=MAINTAINER_EMAIL,
42-
maintainer=MAINTAINER,
43-
maintainer_email=MAINTAINER_EMAIL,
44-
description=DESCRIPTION,
45-
long_description=LONG_DESCRIPTION,
46-
license=LICENSE,
47-
url=URL,
48-
version=VERSION,
49-
download_url=DOWNLOAD_URL,
50-
install_requires=['numpy'],
51-
packages=find_packages(),
52-
zip_safe=False,
53-
classifiers=['Intended Audience :: Science/Research',
54-
'Programming Language :: Python :: 3']
55-
)
35+
setup(
36+
name=DISTNAME,
37+
author=MAINTAINER,
38+
author_email=MAINTAINER_EMAIL,
39+
maintainer=MAINTAINER,
40+
maintainer_email=MAINTAINER_EMAIL,
41+
description=DESCRIPTION,
42+
long_description=open("README.md").read(),
43+
long_description_content_type="text/markdown",
44+
license=LICENSE,
45+
url=URL,
46+
version=VERSION,
47+
download_url=DOWNLOAD_URL,
48+
install_requires=["numpy"],
49+
packages=find_packages(),
50+
zip_safe=False,
51+
classifiers=[
52+
"Intended Audience :: Science/Research",
53+
"Programming Language :: Python :: 3",
54+
],
55+
)

0 commit comments

Comments
 (0)