-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.34 KB
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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "restructuredpython"
version = "2.6.0"
requires-python = ">= 3.10"
description = "A superset of Python with many new features, including full JS integration, multiline comments, header files, and optional curly brackets around control statements"
authors = [{name = "Rihaan Meher", email = "meherrihaan@gmail.com"}]
license = { text = "Apache-2.0" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"textfmt"
]
[project.scripts]
repy = "restructuredpython.restructuredpython:main"
repycl = "restructuredpython.restructuredpython:launch"
[tool.setuptools]
packages = ["restructuredpython"]
ext-modules = [
{name = "restructuredpython.api.libio", sources = ["restructuredpython/lib/io.c"]}
]
[project.urls]
Homepage = "https://restructuredpython.rf.gd"
Documentation = "https://restructuredpython.readthedocs.org"
Repository = "https://github.com/sharktide/restructuredpython.git"
Issues = "https://github.com/sharktide/restructuredpython/issues"
Changelog = "https://restructuredpython.readthedocs.io/en/latest/changelog.html"