Skip to content

Commit 612577a

Browse files
Doc tweaks
1 parent d3583ed commit 612577a

File tree

6 files changed

+43
-16
lines changed

6 files changed

+43
-16
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
build/*
22
tailblazer.egg-info/*
3-
.pytest_cache/*
3+
.pytest_cache/*
4+
dist/*

LICENSE

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2018 The Python Packaging Authority
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
SOFTWARE.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# <img src="img/logo.png" height="30" vertical> tailblazer
1+
# <img src="https://chrisjameswalker.com/wp-content/uploads/2024/07/logo.png" height="30" vertical> tailblazer
22

33
A Python package containing several useful functions for working
44
with the tails of a distribution. This is a natural extension to

img/logo.png

-116 KB
Binary file not shown.

pyproject.toml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[project]
2+
name = "tailblazer"
3+
version = "0.0.1"
4+
authors = [
5+
{ name="Chris Walker", email="walkerjameschris@gmail.com" },
6+
]
7+
description = "A collection of NumPy compatible algorithms for working with the tails of distributions."
8+
readme = "README.md"
9+
requires-python = ">=3.8"
10+
classifiers = [
11+
"Programming Language :: Python :: 3",
12+
"License :: OSI Approved :: MIT License",
13+
"Operating System :: OS Independent",
14+
]
15+
dependencies = [
16+
"numpy"
17+
]
18+
19+
[project.urls]
20+
Homepage = "https://github.com/pypa/sampleproject"
21+
Issues = "https://github.com/pypa/sampleproject/issues"

setup.py

-14
This file was deleted.

0 commit comments

Comments
 (0)