diff options
author | CoprDistGit <infra@openeuler.org> | 2023-06-20 10:09:17 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-06-20 10:09:17 +0000 |
commit | 21fe080ad4b200445f31170fadc0b775814dbdf3 (patch) | |
tree | d1f6251c83f2a4e03433632a67827f7bc093e362 | |
parent | 5951d6804c2752b43ac6443250ac9a4fa4cb50a4 (diff) |
automatic import of python-kinetickopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-kinetick.spec | 107 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 109 insertions, 0 deletions
@@ -0,0 +1 @@ +/kinetick-1.0.15.tar.gz diff --git a/python-kinetick.spec b/python-kinetick.spec new file mode 100644 index 0000000..2c3600a --- /dev/null +++ b/python-kinetick.spec @@ -0,0 +1,107 @@ +%global _empty_manifest_terminate_build 0 +Name: python-kinetick +Version: 1.0.15 +Release: 1 +Summary: Simplifying Trading +License: LGPL +URL: https://github.com/imvinaypatil/kinetick +Source0: https://mirrors.aliyun.com/pypi/web/packages/55/4a/271bf5f4b891fdc6e65ddfc14413d4fccd3ecd066d3f76ae2ab8e84dbbfc/kinetick-1.0.15.tar.gz +BuildArch: noarch + +Requires: python3-dateutil +Requires: python3-numpy +Requires: python3-pandas +Requires: python3-pytz +Requires: python3-requests +Requires: python3-pyzmq +Requires: python3-mongoengine +Requires: python3-telegram-bot +Requires: python3-paho-mqtt +Requires: python3-TA-Lib +Requires: python3-webull-12 + +%description +\ +\ + Kinetick is a framework for creating and running trading strategies without worrying + about integration with broker and data streams (currently integrates with zerodha [*]_). + Kinetick is aimed to make systematic trading available for everyone. +Leave the heavy lifting to kinetick and you focus on building strategies. +WARNING +This project is still in its early stages, please be cautious when dealing with real money. +`Changelog » <./CHANGELOG.rst>`_ + +%package -n python3-kinetick +Summary: Simplifying Trading +Provides: python-kinetick +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-kinetick +\ +\ + Kinetick is a framework for creating and running trading strategies without worrying + about integration with broker and data streams (currently integrates with zerodha [*]_). + Kinetick is aimed to make systematic trading available for everyone. +Leave the heavy lifting to kinetick and you focus on building strategies. +WARNING +This project is still in its early stages, please be cautious when dealing with real money. +`Changelog » <./CHANGELOG.rst>`_ + +%package help +Summary: Development documents and examples for kinetick +Provides: python3-kinetick-doc +%description help +\ +\ + Kinetick is a framework for creating and running trading strategies without worrying + about integration with broker and data streams (currently integrates with zerodha [*]_). + Kinetick is aimed to make systematic trading available for everyone. +Leave the heavy lifting to kinetick and you focus on building strategies. +WARNING +This project is still in its early stages, please be cautious when dealing with real money. +`Changelog » <./CHANGELOG.rst>`_ + +%prep +%autosetup -n kinetick-1.0.15 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "\"/%h/%f.gz\"\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-kinetick -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Jun 20 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.15-1 +- Package Spec generated @@ -0,0 +1 @@ +30c9244a13cfbbfa30c1d486b0c4f250 kinetick-1.0.15.tar.gz |