Skip to content

Commit

Permalink
Documentation and metadata changes for 1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
felixpatzelt committed Sep 29, 2017
1 parent 98ad0af commit f20abb1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
Changelog
=========

:Version: 1.0 of 2017-09-24

:Version: 1.0-rc.2 of 2017/09/23
Version bump after testing upload to GitHub and PyPI, as well as pip installation
and output correctness under Python 2.7 and 3.6.

:Version: 1.0-rc.1 of 2017-09-23

Refactoring: moved powerlaw_psd_gaussian into the present pure python module to
release it to the public in pip-installable form.
Expand Down
8 changes: 5 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@ Installation
Dependencies
------------

- python 2.7
- numpy
- Python >= 2.7 or >= 3.6
- NumPy

Other Python versions were not tested, but are likely to work.


Example
-------
Expand All @@ -48,4 +50,4 @@ Example
#plt.loglog(f,s)
#plt.grid(True)
#plt.show()
14 changes: 10 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='colorednoise',
version='1.0-rc.1',
version='1.0.0',
description='Generate Gaussian (1/f)**beta noise (e.g. pink noise)',
long_description="""
Generate Gaussian distributed noise with a power law spectrum.
Expand All @@ -13,15 +13,21 @@
""",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2 :: Only',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering'
],
'Topic :: Software Development :: Libraries'
'Topic :: Software Development :: Libraries :: Python Modules' ],
keywords='1/f flicker power-law correlated colored noise generator',
url='http://github.com/felixpatzelt/colorednoise',
download_url=(
'https://github.com/felixpatzelt/colorednoise/archive/1.0.0-rc.1.tar.gz'
'https://github.com/felixpatzelt/colorednoise/archive/1.0.0.tar.gz'
),
author='Felix Patzelt',
author_email='felix@neuro.uni-bremen.de',
Expand Down

0 comments on commit f20abb1

Please sign in to comment.