Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4504f12

Browse files
author
Grant Jenks
committed
Try moving from setup.py to pyproject.toml
1 parente22e31d commit4504f12

28 files changed

+37
-19
lines changed

‎pyproject.toml‎

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[build-system]
2+
requires = ["setuptools"]
3+
build-backend ="setuptools.build_meta"
4+
5+
[project]
6+
name ="typesense"
7+
description ="Python client for Typesense, an open source and typo tolerant search engine."
8+
authors = [
9+
{"name" ="Typesense","email" ="contact@typesense.org"},
10+
]
11+
readme ="README.md"
12+
requires-python =">=3"
13+
keywords = ["search","typesense"]
14+
license = {"text" ="Apache 2.0"}
15+
classifiers = [
16+
"Development Status :: 5 - Production/Stable",
17+
"Intended Audience :: Developers",
18+
"License :: OSI Approved :: Apache Software License",
19+
"Programming Language :: Python",
20+
"Programming Language :: Python :: 3",
21+
]
22+
dependencies = ["requests"]
23+
dynamic = ["version"]
24+
25+
[project.urls]
26+
Documentation ="https://typesense.org/"
27+
Source ="https://github.com/typesense/typesense-python"
28+
Tracker ="https://github.com/typesense/typesense-python/issues"
29+
30+
[tool.setuptools.dynamic]
31+
version = {attr ="typesense.__version__"}
32+
33+
[tool.setuptools.packages.find]
34+
where = ["src"]

‎setup.py‎

Lines changed: 0 additions & 19 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
from .clientimportClient# NOQA
2+
3+
4+
__version__='0.17.1'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp