forked from winpython/winpython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 1.08 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
[build-system] # flit_core seems the step after 'setuptools','wheel','build','twine' (see https://github.com/pypa/build/issues/394)
requires = ["flit_core"]
build-backend = "flit_core.buildapi"
[project]
name = "winpython"
authors = [
{name = "Pierre Raybaut"},
{name = "stonebig"},
]
dependencies = []
requires-python = ">=3.8"
readme = "README.rst"
license = {file = "LICENSE"}
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Widget Sets',
]
dynamic = ["version",]
description="WinPython distribution tools, including WPPM"
keywords = ["Portable","Windows"]
[project.urls]
Documentation = "https://winpython.github.io/"
Source = "https://github.com/winpython/winpython"
[project.scripts]
wppm = "winpython.wppm:main"