File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed
Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 44
55test :
66 poetry run pytest tests.py --verbose
7+
8+ release :
9+ rm -rf build dist
10+ python setup.py sdist bdist_wheel
11+ twine upload --repository=fractional-indexing dist/*
Original file line number Diff line number Diff line change 11"""
22Provides functions for generating ordering strings
33
4- It’s a Python port of <https://github.com/rocicorp/fractional-indexing>.
4+ <https://observablehq.com/@dgreensp/implementing-fractional-indexing>
5+
6+ <https://github.com/httpie/fractional-indexing-python>.
57
68"""
79from math import floor
810from typing import Optional , List
911import decimal
1012
1113
12- __version__ = '0.1.0 '
14+ __version__ = '0.1.1 '
1315__licence__ = 'CC0 1.0 Universal'
1416
1517
Original file line number Diff line number Diff line change 1414 long_description_content_type = 'text/markdown' ,
1515 version = __version__ ,
1616 license = __licence__ ,
17- url = 'https://github.com/httpie/fractional-indexing' ,
17+ url = 'https://github.com/httpie/fractional-indexing-python ' ,
1818 py_modules = [
1919 'fractional_indexing' ,
2020 ],
2121 install_requires = [
2222 'setuptools' ,
2323 ],
24+ project_urls = {
25+ 'GitHub' : 'https://github.com/httpie/fractional-indexing-python' ,
26+ 'Twitter' : 'https://twitter.com/httpie' ,
27+ 'Discord' : 'https://httpie.io/discord' ,
28+ },
2429)
You can’t perform that action at this time.
0 commit comments