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 38a1846 commit c09c9a2Copy full SHA for c09c9a2
requirements.txt
@@ -0,0 +1,7 @@
1
+csaps>=0.11
2
+fastprogress
3
+joblib
4
+numpy
5
+pandas
6
+scipy
7
+tsfresh
setup.py
@@ -1,6 +1,9 @@
+import pathlib
import setuptools
__packagename__ = 'bletl'
+ROOT = pathlib.Path(__file__).parent
+
8
def get_version():
9
import os, re
@@ -33,14 +36,6 @@ def get_version():
33
36
'Intended Audience :: Science/Research',
34
37
'License :: OSI Approved :: GNU Affero General Public License v3',
35
38
],
- install_requires=[
- 'csaps>=0.11',
- 'fastprogress',
39
- 'joblib',
40
- 'numpy',
41
- 'pandas',
42
- 'scipy',
43
- 'tsfresh',
44
- ],
+ install_requires=open(pathlib.Path(ROOT, 'requirements.txt')).readlines(),
45
)
46
0 commit comments