Merge pull request #4189 from mwichmann/test/311-smart-errors
[scons.git] / setup.cfg
blob941db34199c763ecacf5b916a834dc2d5363bbb6
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     Environment :: Console
35     Intended Audience :: Developers
36     License :: OSI Approved :: MIT License
37     Operating System :: POSIX :: Linux
38     Operating System :: Unix
39     Operating System :: MacOS
40     Operating System :: Microsoft :: Windows
43 [options]
44 zip_safe = False
45 python_requires = >=3.6
46 install_requires =
47     setuptools
49 setup_requires = setuptools
50 include_package_data = True
51 packages = find:
54 [options.packages.find]
55 ;include=SCons.*
56 exclude=template
58 [options.entry_points]
59 console_scripts =
60     scons = SCons.Script.Main:main
61     sconsign = SCons.Utilities.sconsign:main
62     scons-configure-cache = SCons.Utilities.ConfigureCache:main
65 [options.package_data]
66 * = *.txt, *.rst, *.1
67 SCons.Tool.docbook = *.*
70 [options.data_files]
71 . = scons.1
72     scons-time.1
73     sconsign.1
75 [sdist]
76     dist_dir=build/dist
78 [bdist_wheel]
79     ; We're now py3 only
80 ;universal=true
81 dist_dir=build/dist