ta-lib 0.4.34__tar.gz → 0.4.36__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. {ta_lib-0.4.34 → ta_lib-0.4.36}/PKG-INFO +2 -1
  2. ta_lib-0.4.36/pyproject.toml +8 -0
  3. {ta_lib-0.4.34 → ta_lib-0.4.36}/setup.py +3 -3
  4. {ta_lib-0.4.34 → ta_lib-0.4.36}/ta_lib.egg-info/PKG-INFO +2 -1
  5. ta_lib-0.4.36/ta_lib.egg-info/requires.txt +2 -0
  6. {ta_lib-0.4.34 → ta_lib-0.4.36}/talib/__init__.py +1 -1
  7. ta_lib-0.4.34/pyproject.toml +0 -8
  8. ta_lib-0.4.34/ta_lib.egg-info/requires.txt +0 -1
  9. {ta_lib-0.4.34 → ta_lib-0.4.36}/AUTHORS +0 -0
  10. {ta_lib-0.4.34 → ta_lib-0.4.36}/COPYRIGHT +0 -0
  11. {ta_lib-0.4.34 → ta_lib-0.4.36}/LICENSE +0 -0
  12. {ta_lib-0.4.34 → ta_lib-0.4.36}/MANIFEST.in +0 -0
  13. {ta_lib-0.4.34 → ta_lib-0.4.36}/README.md +0 -0
  14. {ta_lib-0.4.34 → ta_lib-0.4.36}/setup.cfg +0 -0
  15. {ta_lib-0.4.34 → ta_lib-0.4.36}/ta_lib.egg-info/SOURCES.txt +0 -0
  16. {ta_lib-0.4.34 → ta_lib-0.4.36}/ta_lib.egg-info/dependency_links.txt +0 -0
  17. {ta_lib-0.4.34 → ta_lib-0.4.36}/ta_lib.egg-info/top_level.txt +0 -0
  18. {ta_lib-0.4.34 → ta_lib-0.4.36}/talib/_abstract.pxi +0 -0
  19. {ta_lib-0.4.34 → ta_lib-0.4.36}/talib/_common.pxi +0 -0
  20. {ta_lib-0.4.34 → ta_lib-0.4.36}/talib/_func.pxi +0 -0
  21. {ta_lib-0.4.34 → ta_lib-0.4.36}/talib/_stream.pxi +0 -0
  22. {ta_lib-0.4.34 → ta_lib-0.4.36}/talib/_ta_lib.c +0 -0
  23. {ta_lib-0.4.34 → ta_lib-0.4.36}/talib/_ta_lib.pyx +0 -0
  24. {ta_lib-0.4.34 → ta_lib-0.4.36}/talib/abstract.py +0 -0
  25. {ta_lib-0.4.34 → ta_lib-0.4.36}/talib/deprecated.py +0 -0
  26. {ta_lib-0.4.34 → ta_lib-0.4.36}/talib/stream.py +0 -0
  27. {ta_lib-0.4.34 → ta_lib-0.4.36}/tests/conftest.py +0 -0
  28. {ta_lib-0.4.34 → ta_lib-0.4.36}/tests/test_abstract.py +0 -0
  29. {ta_lib-0.4.34 → ta_lib-0.4.36}/tests/test_func.py +0 -0
  30. {ta_lib-0.4.34 → ta_lib-0.4.36}/tests/test_pandas.py +0 -0
  31. {ta_lib-0.4.34 → ta_lib-0.4.36}/tests/test_polars.py +0 -0
  32. {ta_lib-0.4.34 → ta_lib-0.4.36}/tests/test_stream.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ta-lib
3
- Version: 0.4.34
3
+ Version: 0.4.36
4
4
  Summary: Python wrapper for TA-Lib
5
5
  Home-page: http://github.com/ta-lib/ta-lib-python
6
6
  Download-URL: https://github.com/ta-lib/ta-lib-python/releases
@@ -37,6 +37,7 @@ Classifier: Intended Audience :: Financial and Insurance Industry
37
37
  Description-Content-Type: text/markdown
38
38
  License-File: LICENSE
39
39
  License-File: AUTHORS
40
+ Requires-Dist: setuptools
40
41
  Requires-Dist: numpy
41
42
 
42
43
  # TA-Lib
@@ -0,0 +1,8 @@
1
+ [project]
2
+ name = "ta-lib"
3
+ version = "0.4.36"
4
+ dynamic = ["authors", "classifiers", "description", "license", "readme"]
5
+ dependencies = [
6
+ "setuptools",
7
+ "numpy",
8
+ ]
@@ -18,8 +18,6 @@ except ImportError:
18
18
  from distutils.extension import Extension
19
19
  requires = {"requires": ["numpy"]}
20
20
 
21
- lib_talib_name = 'ta_lib' # the underlying C library's name
22
-
23
21
  platform_supported = False
24
22
 
25
23
  if any(s in sys.platform for s in ['darwin', 'linux', 'bsd', 'sunos']):
@@ -64,6 +62,8 @@ try:
64
62
  except ImportError:
65
63
  has_cython = False
66
64
 
65
+ lib_talib_name = 'ta_lib' # the name as of TA-Lib 0.4.0
66
+
67
67
  for path in library_dirs:
68
68
  try:
69
69
  files = os.listdir(path)
@@ -143,7 +143,7 @@ with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
143
143
 
144
144
  setup(
145
145
  name='TA-Lib',
146
- version='0.4.34',
146
+ version='0.4.36',
147
147
  description='Python wrapper for TA-Lib',
148
148
  long_description=long_description,
149
149
  long_description_content_type='text/markdown',
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ta-lib
3
- Version: 0.4.34
3
+ Version: 0.4.36
4
4
  Summary: Python wrapper for TA-Lib
5
5
  Home-page: http://github.com/ta-lib/ta-lib-python
6
6
  Download-URL: https://github.com/ta-lib/ta-lib-python/releases
@@ -37,6 +37,7 @@ Classifier: Intended Audience :: Financial and Insurance Industry
37
37
  Description-Content-Type: text/markdown
38
38
  License-File: LICENSE
39
39
  License-File: AUTHORS
40
+ Requires-Dist: setuptools
40
41
  Requires-Dist: numpy
41
42
 
42
43
  # TA-Lib
@@ -0,0 +1,2 @@
1
+ setuptools
2
+ numpy
@@ -132,7 +132,7 @@ for func_name, stream_func_name in zip(__TA_FUNCTION_NAMES__, stream_func_names)
132
132
  setattr(stream, func_name, wrapped_func)
133
133
  globals()[stream_func_name] = wrapped_func
134
134
 
135
- __version__ = '0.4.34'
135
+ __version__ = '0.4.36'
136
136
 
137
137
  # In order to use this python library, talib (i.e. this __file__) will be
138
138
  # imported at some point, either explicitly or indirectly via talib.func
@@ -1,8 +0,0 @@
1
- [project]
2
- name = "ta-lib"
3
- version = "0.4.34"
4
- dynamic = ["authors", "classifiers", "dependencies", "description", "license", "readme"]
5
-
6
- [build-system]
7
- requires = ["setuptools >= 51.0.0", "wheel", "numpy<2.0.0"]
8
- build-backend = "setuptools.build_meta:__legacy__"
@@ -1 +0,0 @@
1
- numpy
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes