Skip to content

Commit

Permalink
funcat: adapt to github actions
Browse files Browse the repository at this point in the history
Signed-off-by: Guanjun <guanjun@linux.alibaba.com>
  • Loading branch information
mapicccy committed Jan 27, 2024
1 parent 98ad0ef commit 337bbc1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,9 @@ jobs:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
pip install -r requirements.txt
- name: Build package
run: python -m build
run: python setup.py sdist bdist_wheel
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
Expand Down
2 changes: 1 addition & 1 deletion funcat/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.5
1.1.6
7 changes: 4 additions & 3 deletions funcat3.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: funcat3
Version: 1.1.5
Version: 1.1.6
Home-page: https://github.com/mapicccy/funcat
Author: Guanjun
Author-email: mapicccy@gmail.com
Expand All @@ -19,6 +19,8 @@ Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: setuptools
Requires-Dist: wheel
Requires-Dist: numpy
Requires-Dist: six
Requires-Dist: backports.functools_lru_cache
Expand All @@ -37,5 +39,4 @@ Requires-Dist: charset_normalizer
Requires-Dist: tushare
Requires-Dist: akshare

Using very simple code to compute indicator of stock\crytocurrency. Make quantify easier to everyone.
Funcat has transplanted the indicator formulas of THS, Tongdaxin, Wenhua Finance, and other platforms into Python. It is suitable for quantitative analysis and trading of stocks, futures, contracts, and cryptocurrencies.
Using very simple code to compute indicator of stock and crytocurrency. Make quantify easier to everyone. Funcat has transplanted the indicator formulas of THS, Tongdaxin, Wenhua Finance, and other platforms into Python. It is suitable for quantitative analysis and trading of stocks, futures, contracts, and cryptocurrencies.
2 changes: 2 additions & 0 deletions funcat3.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
setuptools
wheel
numpy
six
backports.functools_lru_cache
Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
setuptools
wheel
numpy
six
backports.functools_lru_cache
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
setup(
name='funcat3',
version=version,
long_description='Using very simple code to compute indicator of stock\crytocurrency. Make quantify easier to everyone.\nFuncat has transplanted the indicator formulas of THS, Tongdaxin, Wenhua Finance, and other platforms into Python. It is suitable for quantitative analysis and trading of stocks, futures, contracts, and cryptocurrencies.',
long_description='Using very simple code to compute indicator of stock and crytocurrency. Make quantify easier to everyone. Funcat has transplanted the indicator formulas of THS, Tongdaxin, Wenhua Finance, and other platforms into Python. It is suitable for quantitative analysis and trading of stocks, futures, contracts, and cryptocurrencies.',
long_description_content_type="text/x-rst",
packages=find_packages(exclude=[]),
author='Guanjun',
Expand Down

0 comments on commit 337bbc1

Please sign in to comment.