We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0ea0ea commit 77a3ef4Copy full SHA for 77a3ef4
setup.py
@@ -22,20 +22,14 @@
22
23
from setuptools import find_packages, setup, Command
24
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
31
# Package meta-data.
32
NAME = 'biosppy'
33
DESCRIPTION = 'A toolbox for biosignal processing written in Python.'
34
URL = 'https://github.com/scientisst/BioSPPy'
35
EMAIL = '[email protected]'
36
AUTHOR = 'Instituto de Telecomunicacoes'
37
REQUIRES_PYTHON = '>3.5.2'
38
-VERSION = version
+VERSION = 2.1.2
39
LICENSE = 'BSD 3-clause'
40
41
# What packages are required for this module to be executed?
0 commit comments