From f20abb1749ba37cf6d842396252c8037a194e3e5 Mon Sep 17 00:00:00 2001 From: Felix Patzelt Date: Fri, 29 Sep 2017 14:33:52 +0200 Subject: [PATCH] Documentation and metadata changes for 1.0.0 release --- CHANGELOG.rst | 6 +++++- README.rst | 8 +++++--- setup.py | 14 ++++++++++---- 3 files changed, 20 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2ad9771..0013598 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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. diff --git a/README.rst b/README.rst index 7d2fe54..2baae82 100644 --- a/README.rst +++ b/README.rst @@ -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 ------- @@ -48,4 +50,4 @@ Example #plt.loglog(f,s) #plt.grid(True) #plt.show() - \ No newline at end of file + diff --git a/setup.py b/setup.py index 7376049..361a77c 100644 --- a/setup.py +++ b/setup.py @@ -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. @@ -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',