-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
61 lines (56 loc) · 1.73 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
58
59
60
61
[tool.poetry]
name = "CyInstaller"
version = "1.2.0"
description = "A cli tool to package application with Cython & PyInstaller."
authors = ["SolardiaX <solardiax@hotmail.com>"]
maintainers = ["SolardiaX <solardiax@hotmail.com>"]
license = "MIT"
readme="README.rst"
repository="https://github.com/SolardiaX/CyInstaller"
homepage="https://github.com/SolardiaX/CyInstaller"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Interpreters",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Software Distribution",
"Topic :: Utilities",
]
include = [
"LICENSE.rst"
]
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
click = "^8.1.7"
Cython = "^3.0.10"
pyinstaller = "^6.5.0"
PyYAML = "^6.0.1"
[tool.poetry.group.example.dependencies]
bcrypt = "^4.1.2"
cryptography = "^41.0.7"
email-validator = "^2.1.0.post1"
flask = "^2.3.3"
flask-security-too = "^5.3.2"
pony = "^0.7.17"
waitress = "^2.1.2"
python-dotenv = "^1.0.0"
[tool.poetry.scripts]
CyInstaller = "CyInstaller.__main__:build_command"
[tool.poetry.group.dev.dependencies]
setuptools = "^69.2.0"
packaging = "^23.2"
sphinx = "^7.1.2"
sphinx-issues = "^3.0.1"
sphinx-material = "^0.0.35"
sphinxcontrib-log-cabinet = "^1.0.1"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools", "wheel"]
build-backend = "poetry.core.masonry.api"