Skip to content

Commit 77a3ef4

Browse files
authored
Update setup.py (#28)
1 parent f0ea0ea commit 77a3ef4

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

setup.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,14 @@
2222

2323
from setuptools import find_packages, setup, Command
2424

25-
_version_re = re.compile(r'__version__\s+=\s+(.*)')
26-
27-
with open('biosppy/__init__.py', 'rb') as f:
28-
version = str(ast.literal_eval(_version_re.search(
29-
f.read().decode('utf-8')).group(1)))
30-
3125
# Package meta-data.
3226
NAME = 'biosppy'
3327
DESCRIPTION = 'A toolbox for biosignal processing written in Python.'
3428
URL = 'https://github.com/scientisst/BioSPPy'
3529
3630
AUTHOR = 'Instituto de Telecomunicacoes'
3731
REQUIRES_PYTHON = '>3.5.2'
38-
VERSION = version
32+
VERSION = 2.1.2
3933
LICENSE = 'BSD 3-clause'
4034

4135
# What packages are required for this module to be executed?

0 commit comments

Comments
 (0)