-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
96 lines (92 loc) · 3.36 KB
/
setup.py
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# Copyright Jamie Allsop 2014-2024
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
#-------------------------------------------------------------------------------
# setup.py
#-------------------------------------------------------------------------------
from setuptools import setup
import os
import cuppa.version
with open( 'README.rst' ) as readme_file:
long_description = readme_file.read()
setup(
name = 'cuppa',
version = cuppa.utility.version.get_version(),
description = 'Cuppa, an extension package to simplify and extend Scons',
author = 'ja11sop',
url = 'https://github.com/ja11sop/cuppa',
license = 'Boost Software License 1.0 - http://www.boost.org/LICENSE_1_0.txt',
long_description = long_description,
packages = [
'cuppa',
'cuppa.core',
'cuppa.cpp',
'cuppa.cpp.templates',
'cuppa.dependencies',
'cuppa.dependencies.boost',
'cuppa.method_helpers',
'cuppa.methods',
'cuppa.modules',
'cuppa.package_managers',
'cuppa.packages',
'cuppa.platforms',
'cuppa.profiles',
'cuppa.project_generators',
'cuppa.scms',
'cuppa.test_report',
'cuppa.toolchains',
'cuppa.variants',
'cuppa.utility',
],
package_data = {
'cuppa': [
'VERSION',
os.path.join( 'dependencies','boost','boost_bug_fix_1.73.0.diff' ),
os.path.join( 'dependencies','boost','boost_test_patch_1.58.0.diff' ),
os.path.join( 'dependencies','boost','boost_test_patch_1.67.0.diff' ),
os.path.join( 'dependencies','boost','boost_test_patch_1.68.0.diff' ),
os.path.join( 'dependencies','boost','boost_test_patch_1.71.0.diff' ),
os.path.join( 'dependencies','boost','boost_test_patch_1.72.0.diff' ),
os.path.join( 'cpp','templates','coverage_index.html' ),
os.path.join( 'test_report','templates','test_report_index.html' ),
os.path.join( 'test_report','templates','test_suite_index.html' ),
]
},
install_requires = [
'colorama',
'gcovr',
'grip',
'jinja2',
'libsass',
'lxml',
'psutil',
'pyscss',
'six',
'pyyaml',
],
entry_points = {
'console_scripts': [
'cuppa = cuppa.__main__:main'
],
'cuppa.method.plugins' : [
'cuppa.test_report.generate_bitten_report = cuppa.test_report.generate_bitten_report:GenerateBittenReportMethod',
'cuppa.test_report.html_report.generate_html_report = cuppa.test_report.html_report:GenerateHtmlReportMethod',
'cuppa.test_report.html_report.collate_test_report = cuppa.test_report.html_report:CollateTestReportIndexMethod',
]
},
classifiers = [
"Topic :: Software Development :: Build Tools",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"License :: OSI Approved",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
keywords = [
'scons',
'build',
'c++',
]
)