Skip to content

Commit 681cb65

Browse files
committed
wip
1 parent cbce902 commit 681cb65

6 files changed

Lines changed: 598 additions & 13 deletions

File tree

.gitattributes

Lines changed: 0 additions & 1 deletion
This file was deleted.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.pytest_cache
2-
.ruff_cache
2+
.ruff_cache
3+
sqids.egg-info

blocklist.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

pyproject.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[project]
2+
name = "sqids"
3+
description = "Generate YouTube-like ids from numbers."
4+
version = "0.1.0"
5+
readme = "README.md"
6+
authors = []
7+
license = { file = "LICENSE" }
8+
classifiers = [
9+
"License :: OSI Approved :: MIT License",
10+
"Programming Language :: Python :: 3.8",
11+
"Programming Language :: Python :: 3.9",
12+
"Programming Language :: Python :: 3.10",
13+
"Programming Language :: Python :: 3.11",
14+
]
15+
keywords = ["sqids", "encode", "generate", "ids", "hashids"]
16+
requires-python = ">=3.8"
17+
18+
[project.urls]
19+
Homepage = "https://sqids.org/python"
20+
21+
[build-system]
22+
requires = ["setuptools", "setuptools-scm"]
23+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name="sqids",
5+
version="0.1.0",
6+
packages=find_packages(),
7+
py_modules=["sqids"],
8+
)

0 commit comments

Comments
 (0)