File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ release :
5+ types : [published]
6+
7+ permissions :
8+ id-token : write
9+ contents : read
10+
11+ jobs :
12+ release :
13+ name : release
14+ runs-on : ubuntu-latest
15+ steps :
16+ - name : Checkout Code
17+ uses : actions/checkout@v6
18+ with :
19+ persist-credentials : false
20+
21+ - uses : actions/setup-python@v5
22+ with :
23+ python-version : 3.9
24+
25+ - run : |
26+ python -m pip install --upgrade pip
27+ pip install -r requirements.txt
28+ pip install -e .
29+
30+ - name : Run Tests
31+ run : make test
32+
33+ - name : Install build tooling
34+ run : |
35+ pip install build
36+
37+ - name : Build sdist and wheel
38+ env :
39+ PACKAGE_VERSION : ${{ github.ref_name }}
40+ run : python -m build
41+
42+ - name : Publish to PyPI
43+ uses : pypa/gh-action-pypi-publish@release/v1
Original file line number Diff line number Diff line change 11## Kuest CLOB Python order-utils
22
3- <a href =' https://pypi.org/project/py-order-utils ' >
4- <img src='https://img.shields.io/pypi/v/py-order-utils.svg' alt='PyPI'/>
3+ <a href =' https://pypi.org/project/kuest- py-order-utils ' >
4+ <img src='https://img.shields.io/pypi/v/kuest- py-order-utils.svg' alt='PyPI'/>
55</a >
66
77Python utilities used to generate and sign orders for the Kuest CTF Exchange
88
99### Install
1010
1111``` bash
12- pip install py-order-utils
12+ pip install kuest- py-order-utils
1313```
1414
1515### Usage
Original file line number Diff line number Diff line change 11eth-account === 0.13.0
22eth-utils === 4.1.1
3- kuest_eip712_structs @ git+https://github.com/kuestcom/ py-eip712-structs@main
3+ kuest- py-eip712-structs== 0.0.1
44pytest == 8.2.2
Original file line number Diff line number Diff line change 44 long_description = fh .read ()
55
66setuptools .setup (
7- name = "py_order_utils " ,
7+ name = "kuest-py-order-utils " ,
88 version = "0.3.2" ,
99 author = "Kuest Engineering" ,
1010 author_email = "engineering@kuest.com" ,
1717 install_requires = [
1818 "eth-utils>=4.1.1" ,
1919 "eth-account>=0.13.0" ,
20- "kuest-eip712-structs" ,
20+ "kuest-py- eip712-structs==0.0.1 " ,
2121 "pytest" ,
2222 ],
2323 package_data = {
You can’t perform that action at this time.
0 commit comments