Bump version to 4.1.0.post1 and fix non-wheel packaging of manpages
[scons.git] / setup.cfg
blobc39f2de28e0a8abe9ad4703232ebd5c0e74d8a69
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 = http://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
21 classifiers =
22     Development Status :: 5 - Production/Stable
23     Topic :: Software Development :: Build Tools
24     Programming Language :: Python
25     Programming Language :: Python :: 3
26     Programming Language :: Python :: 3 :: Only
27     Programming Language :: Python :: 3.5
28     Programming Language :: Python :: 3.6
29     Programming Language :: Python :: 3.7
30     Programming Language :: Python :: 3.8
31     Programming Language :: Python :: 3.9
32     Environment :: Console
33     Intended Audience :: Developers
34     License :: OSI Approved :: MIT License
35     Operating System :: POSIX :: Linux
36     Operating System :: Unix
37     Operating System :: MacOS
38     Operating System :: Microsoft :: Windows
41 [options]
42 zip_safe = False
43 python_requires = >=3.5
44 install_requires =
45     setuptools
47 setup_requires = setuptools
48 include_package_data = True
49 packages = find:
52 [options.packages.find]
53 ;include=SCons.*
54 exclude=template
56 [options.entry_points]
57 console_scripts =
58     scons = SCons.Script.Main:main
59     sconsign = SCons.Utilities.sconsign:main
60     scons-configure-cache = SCons.Utilities.ConfigureCache:main
63 [options.package_data]
64 * = *.txt, *.rst, *.1
65 SCons.Tool.docbook = *.*
68 [options.data_files]
69 . = scons.1
70     scons-time.1
71     sconsign.1
73 [sdist]
74     dist-dir=build/dist
76 [bdist_wheel]
77     ; We're now py3 only
78 ;universal=true
79 dist-dir=build/dist