-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (43 loc) · 1.55 KB
/
pyproject.toml
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
42
43
44
45
46
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "modstore"
version = "3.0.0"
description = "Basic and Modded data structures with rust backend for speed."
requires-python = ">=3.8"
dependencies = ["maturin", "tabulate"]
readme = {file = "README.md", content-type = "text/markdown"}
license = { file = "LICENSE" }
authors = [
{name = "Soumyo Deep Gupta", email = "deep.main.ac@gmail.com"}
]
maintainers = [
{name = "Soumyo Deep Gupta", email = "deep.main.ac@gmail.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
'Operating System :: Microsoft :: Windows',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
[tool.maturin]
python-source = "pysrc"
module-name = "modstore._binaries"
include = ["pysrc/**/*.pyi"]
[project.urls]
Documentation = "https://d33p0st.in/documentation/libraries/modstore/#libraries"
GitHub = "https://github.com/d33p0st/modstore"
Pull-Requests = "https://github.com/d33p0st/modstore/pulls"
Issues = "https://github.com/d33p0st/modstore/issues"