forked from marcelotduarte/cx_Freeze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
56 lines (52 loc) · 1.93 KB
/
setup.cfg
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
[bdist_wheel]
# wheels should be OS-specific:
# their names must contain macOS/manulinux1/2010/2014/Windows identifiers
universal = 0
[metadata]
name = cx_Freeze
version = 6.6
url = https://marcelotduarte.github.io/cx_Freeze
project_urls =
Bug Tracker = https://github.com/marcelotduarte/cx_Freeze/issues
CI: GitHub Workflows = https://github.com/marcelotduarte/cx_Freeze/actions?query=branch:main
Source Code = https://github.com/marcelotduarte/cx_Freeze
description = Create standalone executables from Python scripts
long_description = file: README.md
long_description_content_type = text/markdown
author = Anthony Tuininga
author_email = [email protected]
maintainer = Marcelo Duarte @marcelotduarte
license = Python Software Foundation License
license_files =
doc/src/license.rst
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Python Software Foundation License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: C
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Topic :: Software Development :: Build Tools
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Software Distribution
Topic :: Utilities
keywords =
cx-freeze cxfreeze cx_Freeze freeze python
[options]
python_requires = >=3.6
install_requires =
cx_Logging >= 3.0 ; sys_platform == "win32"
importlib_metadata >= 3.1.1
# https://setuptools.readthedocs.io/en/latest/setuptools.html#setting-the-zip-safe-flag
zip_safe = False
[options.entry_points]
console_scripts =
cxfreeze = cx_Freeze.cli:main
cxfreeze-quickstart = cx_Freeze.setupwriter:main