-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
57 lines (41 loc) · 1.25 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
47
48
49
50
51
52
53
54
55
56
57
[project]
name = "py2mojo"
version = "0.0.2"
description = "Automated Python to Mojo code translation"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
keywords = ["mojo", "code", "development", "converter", "translator"]
authors = [
{name = "Manuel Saelices", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dynamic = ["dependencies"]
[project.optional-dependencies]
dev = ["check-manifest"]
test = ["coverage", "pytest"]
[project.urls]
"Homepage" = "https://github.com/msaelices/py2mojo"
"Bug Reports" = "https://github.com/msaelices/py2mojo/issues"
"Source" = "https://github.com/msaelices/py2mojo"
[project.scripts]
py2mojo = "py2mojo.main:main"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
revision = "main"
isort = true
skip_string_normalization = true
log_level = "INFO"
line_length = 120