blob: 2eb77281aa03a82001cd8407c113d9810fd33e7b (
plain)
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
57
58
59
60
61
62
63
64
65
66
|
[metadata]
name = SCons
version=3.9.9a99
license = MIT
author = William Deegan
author_email =bill@baddogconsulting.com
long_description = file: README.rst
description = Open Source next-generation build tool.
group = Development/Tools
license_file = src/LICENSE.txt
url = http://www.scons.org/
project-urls =
Documentation = https://scons.org/documentation.html
Twitter = https://twitter.com/SConsProject
GitHub = https://github.com/SCons/scons
Bug-Tracker = https://github.com/SCons/scons/issues
classifiers =
Development Status :: 5 - Production/Stable
Topic :: Utilities
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Operating System :: Unix
Operating System :: MacOS
Operating System :: Microsoft :: Windows
[options]
zip_safe = False
python_requires = >=3.5
install_requires = setuptools
setup_requires = setuptools
include_package_data = True
package_dir=
=src/engine
packages = find:
[options.packages.find]
where=src/engine
[options.entry_points]
console_scripts =
scons = SCons.Script.Main:main
sconsign = SCons.Utilities.sconsign:main
scons-configure-cache = SCons.Utilities.ConfigureCache:main
[options.package_data]
* = *.txt, *.rst
SCons.Tool.docbook = *.*
[bdist_wheel]
universal=0
|