Implement `GetSConsVersion` static method
[scons.git] / setup.cfg
blob7c6af765cba0eed946c15ec161b804379d25e0ef
1 [metadata]
2 name = SCons
3 license = MIT
4 author = William Deegan
5 author_email =bill@baddogconsulting.com
6 long_description = file: README-package.rst
7 long_description_content_type = text/x-rst
8 description = Open Source next-generation build tool.
9 group = Development/Tools
10 license_file = LICENSE
13 url = https://www.scons.org/
14 project_urls =
15     Documentation = https://scons.org/documentation.html
16     Twitter = https://twitter.com/SConsProject
17     GitHub = https://github.com/SCons/scons
18     Bug-Tracker = https://github.com/SCons/scons/issues
19     Discord = https://discord.gg/pejaFYrD9n
20     Mailing lists = https://scons.org/lists.html
23 classifiers =
24     Development Status :: 5 - Production/Stable
25     Topic :: Software Development :: Build Tools
26     Programming Language :: Python
27     Programming Language :: Python :: 3
28     Programming Language :: Python :: 3 :: Only
29     Programming Language :: Python :: 3.6
30     Programming Language :: Python :: 3.7
31     Programming Language :: Python :: 3.8
32     Programming Language :: Python :: 3.9
33     Programming Language :: Python :: 3.10
34     Programming Language :: Python :: 3.11
35     Programming Language :: Python :: 3.12
36     Programming Language :: Python :: 3.13
37     Environment :: Console
38     Intended Audience :: Developers
39     License :: OSI Approved :: MIT License
40     Operating System :: POSIX :: Linux
41     Operating System :: Unix
42     Operating System :: MacOS
43     Operating System :: Microsoft :: Windows
46 [options]
47 zip_safe = False
48 python_requires = >=3.6
49 include_package_data = True
50 packages = find:
53 [options.packages.find]
54 ;include=SCons.*
55 exclude=template
57 [options.entry_points]
58 console_scripts =
59     scons = SCons.Script.Main:main
60     sconsign = SCons.Utilities.sconsign:main
61     scons-configure-cache = SCons.Utilities.ConfigureCache:main
64 [options.package_data]
65 * = *.txt, *.rst, *.1
66 SCons.Tool.docbook = *.*
69 [options.data_files]
70 . = scons.1
71     scons-time.1
72     sconsign.1
74 [sdist]
75 dist_dir=build/dist
77 [bdist_wheel]
78     ; We're now py3 only
79 ;universal=true
80 dist_dir=build/dist