-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 956 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (34 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[project]
name = "thinftp"
version = "0.1.1"
description = "A very minimal FTP server"
authors = [{ name = "M.V.Harish Kumar", email="harishtpj@gmail.com" }]
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
dependencies = []
[project.optional-dependencies]
docs = [
"sphinx>=7.0",
"pydata-sphinx-theme",
"sphinx-autodoc-typehints",
"myst-parser", # For markdown support
]
[project.urls]
Documentation = "https://thinftp.readthedocs.io"
Repository = "https://github.com/harishtpj/thinftp" # Update with your actual repo URL
[project.scripts]
thinftp = "main:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["main"]
[tool.setuptools.packages.find]
include = ["thinftp*"]
exclude = ["sample_dir*"]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true