sysstra 0.1.2__tar.gz → 0.1.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sysstra
3
- Version: 0.1.2
3
+ Version: 0.1.4
4
4
  Summary: Official Python Library for Sysstra Algo Trading
5
5
  Home-page: https://github.com/sysstra/sysstra
6
6
  Author: Anurag Singh Kushwah
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="sysstra", # Your package name (must be unique on PyPI)
5
- version="0.1.2", # Initial release version
5
+ version="0.1.4", # Initial release version
6
6
  description="Official Python Library for Sysstra Algo Trading",
7
7
  long_description=open("README.md").read(),
8
8
  long_description_content_type="text/markdown",
@@ -10,8 +10,9 @@ setup(
10
10
  author_email="anurag786kushwah@gmail.com",
11
11
  url="https://github.com/sysstra/sysstra", # Link to source code
12
12
  packages=find_packages(), # Automatically find sub-packages
13
+ include_package_data=True,
13
14
  install_requires=[ # Dependencies
14
- "requests",
15
+ "requests==2.32.0",
15
16
  "numpy",
16
17
  "pandas_ta",
17
18
  "redis",
@@ -1,3 +1,7 @@
1
+ from data import *
2
+ from orders import *
3
+ from utils import *
4
+
1
5
  global api_key
2
6
  global orders_url
3
7
 
@@ -83,3 +83,4 @@ if __name__ == '__main__':
83
83
  candle = fetch_option_candle_by_timestamp(exchange="NSE", underlying_symbol="SENSEX", strike_price=80200, option_type="CE", expiry="near",
84
84
  timestamp="2024-12-19 14:45:00")
85
85
  print(candle)
86
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sysstra
3
- Version: 0.1.2
3
+ Version: 0.1.4
4
4
  Summary: Official Python Library for Sysstra Algo Trading
5
5
  Home-page: https://github.com/sysstra/sysstra
6
6
  Author: Anurag Singh Kushwah
@@ -1,4 +1,4 @@
1
- requests
1
+ requests==2.32.0
2
2
  numpy
3
3
  pandas_ta
4
4
  redis
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