-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 1.02 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
########################################################################
#
# File: setup.py
# Author: Mark Mitchell
# Date: 07/20/2005
#
# Contents:
# Distutils setup script.
#
# Copyright (c) 2005 by CodeSourcery, LLC. All rights reserved.
#
########################################################################
########################################################################
# Imports
########################################################################
from qm.dist.distribution import Distribution
from distutils.core import setup
########################################################################
# Main Program
########################################################################
setup(
name = "qmtest_gcc",
author = "CodeSourcery, LLC",
author_email = "[email protected]",
maintainer = "CodeSourcery, LLC",
maintainer_email = "[email protected]",
description = "QMTest support for testing GCC",
distclass=Distribution,
qmtest_extensions="extensions")