Skip to content

Commit

Permalink
release-0.0.2: Bumped version, updated README.
Browse files Browse the repository at this point in the history
  • Loading branch information
adamltaylor committed Oct 14, 2017
1 parent e1e33da commit 5a31e8a
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 37 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.1
current_version = 0.0.2
commit = True
tag = True

Expand Down
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ Version History

0.0.1 Oct 11, 2017 Initial release.

0.0.2 Oct 14, 2017 Added a check for WS version.


.. |Updates| image:: https://pyup.io/repos/github/JaneliaSciComp/PyWaveSurfer/shield.svg
:target: https://pyup.io/repos/github/JaneliaSciComp/PyWaveSurfer/
Expand Down
72 changes: 36 additions & 36 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))


with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

with open(path.join(here, 'requirements.txt'), encoding='utf-8') as f:
requires = f.read().splitlines()

with open(path.join(here, 'requirements-dev.txt'), encoding='utf-8') as f:
requires_dev = f.read().splitlines()

setup(
name='pywavesurfer',
packages=['pywavesurfer'],
version='0.0.1',
description="Python package for reading WaveSurfer data files",
long_description=long_description,
author='Adam L. Taylor, Boaz Mohar',
author_email='taylora@janelia.hhmi.org, boazmohar@gmail.com',
url='https://github.com/JaneliaSciComp/PyWaveSurfer',
download_url='https://github.com/JaneliaSciComp/PyWaveSurfer/archive/v0.0.1.tar.gz',
classifiers=['Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
install_requires=requires,
extras_require={
'dev': requires_dev,
},
)
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))


with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

with open(path.join(here, 'requirements.txt'), encoding='utf-8') as f:
requires = f.read().splitlines()

with open(path.join(here, 'requirements-dev.txt'), encoding='utf-8') as f:
requires_dev = f.read().splitlines()

setup(
name='pywavesurfer',
packages=['pywavesurfer'],
version='0.0.2',
description="Python package for reading WaveSurfer data files",
long_description=long_description,
author='Adam L. Taylor, Boaz Mohar',
author_email='taylora@janelia.hhmi.org, boazmohar@gmail.com',
url='https://github.com/JaneliaSciComp/PyWaveSurfer',
download_url='https://github.com/JaneliaSciComp/PyWaveSurfer/archive/v0.0.2.tar.gz',
classifiers=['Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
install_requires=requires,
extras_require={
'dev': requires_dev,
},
)

0 comments on commit 5a31e8a

Please sign in to comment.