Skip to content

Commit

Permalink
move to github
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Lee-Messer committed May 11, 2020
1 parent 66f16c0 commit 9d3091d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ Related Projects

Change list
-----------
2020-05-11 0.81 transition to github given sunsetting of mercurial support on bithbucket
2018-10-08 created mirror of code on github at https://github.com/cleemesser/python-edf
2018-10-08 added wraps for writing shorts, bump edflib version to 116
2018-02-15 noted that edflib.h not included in source package added to extension file list for 0.74
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,20 +46,20 @@

setup(
name='edflib',
version='0.8',
version='0.81',
description="""python edflib is a python package ot allow access to European Data Format files (EDF for short). This is a standard for biological signals such as EEG, evoked potentials and EMG. This module wraps Teunis van Beelen's edflib.""",
author="""Chris Lee-Messer""",
url="http://bitbucket.org/cleemesser/python-edf",
download_url="http://bitbucket.org/cleemesser/python-edf/downloads",
url=r"https://github.com/cleemesser/python-edf",
download_url=r"https://github.com/cleemesser/python-edf/releases",
# cmdclass={'build_ext': build_ext},
ext_modules=cythonize([ext_modules_edflib]),
packages=["edflib"],
packages=["edflib"], # setuptools.find_packages()
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Development Status :: 4 - Beta'],
# package_data={}
# data_files=[],
# scripts = [],
# scripts = [], # python_requires='>=3.5' or include 2.7?
)

0 comments on commit 9d3091d

Please sign in to comment.