Skip to content

Commit 5fa5a60

Browse files
committed
Fix release action
1 parent 1b53678 commit 5fa5a60

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
tags:
6-
- "v*"
6+
- "*"
77

88
jobs:
99
build:

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
# ocfinance (Works with Cryptoquant)
1+
# ocfinance
2+
3+
[![Build Passing](https://github.com/dhruvan2006/ocfinance/actions/workflows/release.yml/badge.svg)](https://github.com/dhruvan2006/ocfinance/actions/workflows/release.yml)
4+
[![Tests Passing](https://github.com/dhruvan2006/ocfinance/actions/workflows/tests.yml/badge.svg)](https://github.com/dhruvan2006/ocfinance/actions/workflows/tests.yml)
5+
[![PyPI - Version](https://img.shields.io/pypi/v/ocfinance)](https://pypi.org/project/ocfinance/)
6+
[![PyPI Downloads](https://static.pepy.tech/badge/ocfinance)](https://pypi.org/project/ocfinance/)
7+
[![GitHub License](https://img.shields.io/github/license/dhruvan2006/ocfinance)](https://github.com/dhruvan2006/ocfinance)
28

39
`ocfinance` is a python package that enables you to download on-chain data from various sources, including Cryptoquant, CheckOnChain, etc.
410

docs/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
#
33
# For the full list of built-in configuration values, see the documentation:
44
# https://www.sphinx-doc.org/en/master/usage/configuration.html
5+
import importlib.metadata
56

67
# -- Project information -----------------------------------------------------
78
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
89

910
project = 'ocfinance'
1011
copyright = '2025, Dhruvan Gnanadhandayuthapani'
1112
author = 'Dhruvan Gnanadhandayuthapani'
12-
release = '0.0.11'
13+
release = '0.0.12'
1314

1415
# -- General configuration ---------------------------------------------------
1516
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

pyproject.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,23 @@
22
requires = ["setuptools"]
33
build-backend = "setuptools.build_meta"
44

5+
[tool.setuptools.packages.find]
6+
include = ["ocfinance*"]
7+
exclude = ["assets*"]
8+
59
[project]
610
name = "ocfinance"
7-
version = "0.0.11"
11+
version = "0.0.12"
812
authors = [
913
{ name="Dhruvan Gnanadhandayuthapani", email="[email protected]" },
1014
]
1115
description = "Download on-chain data for bitcoin (works for cryptoquant)"
1216
readme = "README.md"
1317
requires-python = ">=3.8"
18+
license = "MIT"
1419
classifiers = [
1520
"Programming Language :: Python :: 3",
16-
"License :: OSI Approved :: MIT License",
21+
"Development Status :: 5 - Production/Stable",
1722
"Operating System :: OS Independent",
1823
]
1924
dependencies = [

0 commit comments

Comments
 (0)