crypticorn 1.0.2rc2__tar.gz → 1.0.2rc4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (136) hide show
  1. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/PKG-INFO +9 -16
  2. crypticorn-1.0.2rc4/crypticorn/client.py +16 -0
  3. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/main.py +1 -1
  4. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn.egg-info/PKG-INFO +9 -16
  5. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn.egg-info/SOURCES.txt +4 -6
  6. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn.egg-info/requires.txt +8 -18
  7. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/pyproject.toml +4 -6
  8. crypticorn-1.0.2rc4/requirements/main.txt +15 -0
  9. crypticorn-1.0.2rc2/crypticorn/client.py +0 -722
  10. crypticorn-1.0.2rc2/crypticorn/hive/requirements.txt +0 -4
  11. crypticorn-1.0.2rc2/crypticorn/klines/requirements.txt +0 -4
  12. crypticorn-1.0.2rc2/crypticorn/trade/requirements.txt +0 -4
  13. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/LICENSE.md +0 -0
  14. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/__init__.py +0 -0
  15. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/hive/__init__.py +0 -0
  16. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/hive/main.py +0 -0
  17. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/hive/utils.py +0 -0
  18. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/__init__.py +0 -0
  19. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/__init__.py +0 -0
  20. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/api/__init__.py +0 -0
  21. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/api/funding_rates_api.py +0 -0
  22. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/api/health_check_api.py +0 -0
  23. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/api/ohlcv_data_api.py +0 -0
  24. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/api/symbols_api.py +0 -0
  25. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/api/udf_api.py +0 -0
  26. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/api_client.py +0 -0
  27. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/api_response.py +0 -0
  28. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/configuration.py +0 -0
  29. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/exceptions.py +0 -0
  30. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/__init__.py +0 -0
  31. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/base_response_health_check_response.py +0 -0
  32. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/base_response_list_funding_rate_response.py +0 -0
  33. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/base_response_list_str.py +0 -0
  34. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/base_response_ohlcv_response.py +0 -0
  35. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/error_response.py +0 -0
  36. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/exchange.py +0 -0
  37. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/funding_rate_response.py +0 -0
  38. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/health_check_response.py +0 -0
  39. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/history_error_response.py +0 -0
  40. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/history_no_data_response.py +0 -0
  41. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/history_success_response.py +0 -0
  42. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/http_validation_error.py +0 -0
  43. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/market.py +0 -0
  44. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/ohlcv_response.py +0 -0
  45. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/resolution.py +0 -0
  46. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/response_get_history_udf_history_get.py +0 -0
  47. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/search_symbol_response.py +0 -0
  48. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/sort_direction.py +0 -0
  49. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/symbol_group_response.py +0 -0
  50. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/symbol_info_response.py +0 -0
  51. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/symbol_type.py +0 -0
  52. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/timeframe.py +0 -0
  53. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/udf_config_response.py +0 -0
  54. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/validation_error.py +0 -0
  55. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/models/validation_error_loc_inner.py +0 -0
  56. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/py.typed +0 -0
  57. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/client/rest.py +0 -0
  58. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/main.py +0 -0
  59. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/__init__.py +0 -0
  60. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_base_response_health_check_response.py +0 -0
  61. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_base_response_list_funding_rate_response.py +0 -0
  62. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_base_response_list_str.py +0 -0
  63. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_base_response_ohlcv_response.py +0 -0
  64. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_error_response.py +0 -0
  65. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_exchange.py +0 -0
  66. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_funding_rate_response.py +0 -0
  67. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_funding_rates_api.py +0 -0
  68. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_health_check_api.py +0 -0
  69. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_health_check_response.py +0 -0
  70. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_history_error_response.py +0 -0
  71. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_history_no_data_response.py +0 -0
  72. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_history_success_response.py +0 -0
  73. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_http_validation_error.py +0 -0
  74. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_market.py +0 -0
  75. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_ohlcv_data_api.py +0 -0
  76. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_ohlcv_response.py +0 -0
  77. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_resolution.py +0 -0
  78. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_response_get_history_udf_history_get.py +0 -0
  79. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_search_symbol_response.py +0 -0
  80. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_sort_direction.py +0 -0
  81. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_symbol_group_response.py +0 -0
  82. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_symbol_info_response.py +0 -0
  83. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_symbol_type.py +0 -0
  84. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_symbols_api.py +0 -0
  85. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_timeframe.py +0 -0
  86. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_udf_api.py +0 -0
  87. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_udf_config_response.py +0 -0
  88. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_validation_error.py +0 -0
  89. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/klines/test/test_validation_error_loc_inner.py +0 -0
  90. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/__init__.py +0 -0
  91. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/__init__.py +0 -0
  92. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/api/__init__.py +0 -0
  93. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/api/api_keys_api.py +0 -0
  94. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/api/bots_api.py +0 -0
  95. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/api/exchanges_api.py +0 -0
  96. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/api/futures_trading_panel_api.py +0 -0
  97. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/api/notifications_api.py +0 -0
  98. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/api/orders_api.py +0 -0
  99. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/api/status_api.py +0 -0
  100. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/api/strategies_api.py +0 -0
  101. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/api/trading_actions_api.py +0 -0
  102. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/api_client.py +0 -0
  103. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/api_response.py +0 -0
  104. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/configuration.py +0 -0
  105. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/exceptions.py +0 -0
  106. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/__init__.py +0 -0
  107. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/action_model.py +0 -0
  108. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/api_error_identifier.py +0 -0
  109. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/api_key_model.py +0 -0
  110. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/bot_model.py +0 -0
  111. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/exchange.py +0 -0
  112. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/execution_ids.py +0 -0
  113. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/futures_balance.py +0 -0
  114. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/futures_trading_action.py +0 -0
  115. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/http_validation_error.py +0 -0
  116. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/margin_mode.py +0 -0
  117. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/market_type.py +0 -0
  118. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/notification_model.py +0 -0
  119. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/notification_type.py +0 -0
  120. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/order_model.py +0 -0
  121. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/order_status.py +0 -0
  122. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/post_futures_action.py +0 -0
  123. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/strategy_exchange_info.py +0 -0
  124. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/strategy_model.py +0 -0
  125. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/tpsl.py +0 -0
  126. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/trading_action_type.py +0 -0
  127. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/update_notification.py +0 -0
  128. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/validation_error.py +0 -0
  129. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/models/validation_error_loc_inner.py +0 -0
  130. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/py.typed +0 -0
  131. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn/trade/client/rest.py +0 -0
  132. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn.egg-info/dependency_links.txt +0 -0
  133. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/crypticorn.egg-info/top_level.txt +0 -0
  134. /crypticorn-1.0.2rc2/requirements-dev.txt → /crypticorn-1.0.2rc4/requirements/dev.txt +0 -0
  135. /crypticorn-1.0.2rc2/requirements-test.txt → /crypticorn-1.0.2rc4/requirements/test.txt +0 -0
  136. {crypticorn-1.0.2rc2 → crypticorn-1.0.2rc4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: crypticorn
3
- Version: 1.0.2rc2
3
+ Version: 1.0.2rc4
4
4
  Summary: Maximise Your Crypto Trading Profits with AI Predictions
5
5
  Author-email: Crypticorn <timon@crypticorn.com>
6
6
  License: MIT License
@@ -16,21 +16,14 @@ Classifier: Typing :: Typed
16
16
  Requires-Python: >=3.10
17
17
  Description-Content-Type: text/markdown
18
18
  License-File: LICENSE.md
19
- Provides-Extra: trade
20
- Requires-Dist: urllib3<3.0.0,>=1.25.3; extra == "trade"
21
- Requires-Dist: python_dateutil>=2.8.2; extra == "trade"
22
- Requires-Dist: pydantic>=2; extra == "trade"
23
- Requires-Dist: typing-extensions>=4.7.1; extra == "trade"
24
- Provides-Extra: klines
25
- Requires-Dist: urllib3<3.0.0,>=1.25.3; extra == "klines"
26
- Requires-Dist: python_dateutil>=2.8.2; extra == "klines"
27
- Requires-Dist: pydantic>=2; extra == "klines"
28
- Requires-Dist: typing-extensions>=4.7.1; extra == "klines"
29
- Provides-Extra: hive
30
- Requires-Dist: pandas<3.0.0,>=2.2.0; extra == "hive"
31
- Requires-Dist: requests<3.0.0,>=2.32.0; extra == "hive"
32
- Requires-Dist: tqdm<5.0.0,>=4.67.0; extra == "hive"
33
- Requires-Dist: pydantic<3.0.0,>=2.0.0; extra == "hive"
19
+ Requires-Dist: urllib3<3.0.0,>=1.25.3
20
+ Requires-Dist: python_dateutil>=2.8.2
21
+ Requires-Dist: pydantic>=2
22
+ Requires-Dist: typing-extensions>=4.7.1
23
+ Requires-Dist: pandas<3.0.0,>=2.2.0
24
+ Requires-Dist: requests<3.0.0,>=2.32.0
25
+ Requires-Dist: tqdm<5.0.0,>=4.67.0
26
+ Requires-Dist: pydantic<3.0.0,>=2.0.0
34
27
  Provides-Extra: dev
35
28
  Requires-Dist: streamlit; extra == "dev"
36
29
  Requires-Dist: httpx; extra == "dev"
@@ -0,0 +1,16 @@
1
+ from crypticorn.hive import HiveClient
2
+ from crypticorn.trade import TradeClient
3
+ from crypticorn.klines import KlinesClient
4
+
5
+ class CrypticornClient:
6
+ def __init__(
7
+ self, base_url: str = "https://api.crypticorn.com", api_key: str = None, jwt: str = None
8
+ ):
9
+ self.base_url = base_url
10
+ self.api_key = api_key
11
+ self.jwt = jwt
12
+
13
+ # Initialize service clients
14
+ self.hive = HiveClient(base_url, api_key, jwt)
15
+ self.trade = TradeClient(base_url, api_key, jwt)
16
+ self.klines = KlinesClient(base_url, api_key, jwt)
@@ -34,6 +34,6 @@ class TradeClient:
34
34
  self.orders = OrdersApi(base_client)
35
35
  self.status = StatusApi(base_client)
36
36
  self.strategies = StrategiesApi(base_client)
37
- self.trading_actions = TradingActionsApi(base_client)
37
+ self.actions = TradingActionsApi(base_client)
38
38
  self.futures = FuturesTradingPanelApi(base_client)
39
39
  self.api_keys = APIKeysApi(base_client)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: crypticorn
3
- Version: 1.0.2rc2
3
+ Version: 1.0.2rc4
4
4
  Summary: Maximise Your Crypto Trading Profits with AI Predictions
5
5
  Author-email: Crypticorn <timon@crypticorn.com>
6
6
  License: MIT License
@@ -16,21 +16,14 @@ Classifier: Typing :: Typed
16
16
  Requires-Python: >=3.10
17
17
  Description-Content-Type: text/markdown
18
18
  License-File: LICENSE.md
19
- Provides-Extra: trade
20
- Requires-Dist: urllib3<3.0.0,>=1.25.3; extra == "trade"
21
- Requires-Dist: python_dateutil>=2.8.2; extra == "trade"
22
- Requires-Dist: pydantic>=2; extra == "trade"
23
- Requires-Dist: typing-extensions>=4.7.1; extra == "trade"
24
- Provides-Extra: klines
25
- Requires-Dist: urllib3<3.0.0,>=1.25.3; extra == "klines"
26
- Requires-Dist: python_dateutil>=2.8.2; extra == "klines"
27
- Requires-Dist: pydantic>=2; extra == "klines"
28
- Requires-Dist: typing-extensions>=4.7.1; extra == "klines"
29
- Provides-Extra: hive
30
- Requires-Dist: pandas<3.0.0,>=2.2.0; extra == "hive"
31
- Requires-Dist: requests<3.0.0,>=2.32.0; extra == "hive"
32
- Requires-Dist: tqdm<5.0.0,>=4.67.0; extra == "hive"
33
- Requires-Dist: pydantic<3.0.0,>=2.0.0; extra == "hive"
19
+ Requires-Dist: urllib3<3.0.0,>=1.25.3
20
+ Requires-Dist: python_dateutil>=2.8.2
21
+ Requires-Dist: pydantic>=2
22
+ Requires-Dist: typing-extensions>=4.7.1
23
+ Requires-Dist: pandas<3.0.0,>=2.2.0
24
+ Requires-Dist: requests<3.0.0,>=2.32.0
25
+ Requires-Dist: tqdm<5.0.0,>=4.67.0
26
+ Requires-Dist: pydantic<3.0.0,>=2.0.0
34
27
  Provides-Extra: dev
35
28
  Requires-Dist: streamlit; extra == "dev"
36
29
  Requires-Dist: httpx; extra == "dev"
@@ -1,7 +1,5 @@
1
1
  LICENSE.md
2
2
  pyproject.toml
3
- requirements-dev.txt
4
- requirements-test.txt
5
3
  crypticorn/__init__.py
6
4
  crypticorn/client.py
7
5
  crypticorn.egg-info/PKG-INFO
@@ -11,11 +9,9 @@ crypticorn.egg-info/requires.txt
11
9
  crypticorn.egg-info/top_level.txt
12
10
  crypticorn/hive/__init__.py
13
11
  crypticorn/hive/main.py
14
- crypticorn/hive/requirements.txt
15
12
  crypticorn/hive/utils.py
16
13
  crypticorn/klines/__init__.py
17
14
  crypticorn/klines/main.py
18
- crypticorn/klines/requirements.txt
19
15
  crypticorn/klines/client/__init__.py
20
16
  crypticorn/klines/client/api_client.py
21
17
  crypticorn/klines/client/api_response.py
@@ -88,7 +84,6 @@ crypticorn/klines/test/test_validation_error.py
88
84
  crypticorn/klines/test/test_validation_error_loc_inner.py
89
85
  crypticorn/trade/__init__.py
90
86
  crypticorn/trade/main.py
91
- crypticorn/trade/requirements.txt
92
87
  crypticorn/trade/client/__init__.py
93
88
  crypticorn/trade/client/api_client.py
94
89
  crypticorn/trade/client/api_response.py
@@ -129,4 +124,7 @@ crypticorn/trade/client/models/tpsl.py
129
124
  crypticorn/trade/client/models/trading_action_type.py
130
125
  crypticorn/trade/client/models/update_notification.py
131
126
  crypticorn/trade/client/models/validation_error.py
132
- crypticorn/trade/client/models/validation_error_loc_inner.py
127
+ crypticorn/trade/client/models/validation_error_loc_inner.py
128
+ requirements/dev.txt
129
+ requirements/main.txt
130
+ requirements/test.txt
@@ -1,3 +1,11 @@
1
+ urllib3<3.0.0,>=1.25.3
2
+ python_dateutil>=2.8.2
3
+ pydantic>=2
4
+ typing-extensions>=4.7.1
5
+ pandas<3.0.0,>=2.2.0
6
+ requests<3.0.0,>=2.32.0
7
+ tqdm<5.0.0,>=4.67.0
8
+ pydantic<3.0.0,>=2.0.0
1
9
 
2
10
  [dev]
3
11
  streamlit
@@ -7,18 +15,6 @@ black
7
15
  twine
8
16
  pyflakes
9
17
 
10
- [hive]
11
- pandas<3.0.0,>=2.2.0
12
- requests<3.0.0,>=2.32.0
13
- tqdm<5.0.0,>=4.67.0
14
- pydantic<3.0.0,>=2.0.0
15
-
16
- [klines]
17
- urllib3<3.0.0,>=1.25.3
18
- python_dateutil>=2.8.2
19
- pydantic>=2
20
- typing-extensions>=4.7.1
21
-
22
18
  [test]
23
19
  pytest>=7.2.1
24
20
  pytest-cov>=2.8.1
@@ -26,9 +22,3 @@ tox>=3.9.0
26
22
  flake8>=4.0.0
27
23
  types-python-dateutil>=2.8.19.14
28
24
  mypy>=1.5
29
-
30
- [trade]
31
- urllib3<3.0.0,>=1.25.3
32
- python_dateutil>=2.8.2
33
- pydantic>=2
34
- typing-extensions>=4.7.1
@@ -5,7 +5,7 @@ readme = "README.md"
5
5
  requires-python = ">=3.10"
6
6
  license = {text = "MIT License"}
7
7
  authors = [{name = "Crypticorn", email = "timon@crypticorn.com"}]
8
- version = "1.0.2rc2"
8
+ version = "1.0.2rc4"
9
9
  keywords = ["machine learning", "data science", "crypto", "modelling"]
10
10
  dynamic = ["dependencies", "optional-dependencies"]
11
11
 
@@ -20,11 +20,9 @@ classifiers = [
20
20
  ]
21
21
 
22
22
  [tool.setuptools.dynamic]
23
- optional-dependencies.trade = { file = ["crypticorn/trade/requirements.txt"] }
24
- optional-dependencies.klines = { file = ["crypticorn/klines/requirements.txt"] }
25
- optional-dependencies.hive = { file = ["crypticorn/hive/requirements.txt"] }
26
- optional-dependencies.dev = { file = ["requirements-dev.txt"] }
27
- optional-dependencies.test = { file = ["requirements-test.txt"] }
23
+ dependencies = { file = ["requirements/main.txt"] }
24
+ optional-dependencies.dev = { file = ["requirements/dev.txt"] }
25
+ optional-dependencies.test = { file = ["requirements/test.txt"] }
28
26
 
29
27
  [project.urls]
30
28
  Homepage = "https://crypticorn.com"
@@ -0,0 +1,15 @@
1
+ # crypticorn/trade/requirements.txt
2
+ urllib3 >= 1.25.3, < 3.0.0
3
+ python_dateutil >= 2.8.2
4
+ pydantic >= 2
5
+ typing-extensions >= 4.7.1
6
+
7
+ # crypticorn/klines/requirements.txt
8
+ # same as trade
9
+
10
+ # crypticorn/hive/requirements.txt
11
+ # same as trade
12
+ pandas >= 2.2.0, < 3.0.0
13
+ requests >= 2.32.0, < 3.0.0
14
+ tqdm >= 4.67.0, < 5.0.0
15
+ pydantic >= 2.0.0, < 3.0.0