blob: 3952f050fe79c2b437a74aad1b923e4c26dac3b2 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#!/usr/bin/python
""" Setup.py for Cog
http://nedbatchelder.com/code/cog
Copyright 2004-2015, Ned Batchelder.
"""
from distutils.core import setup
setup(
name = 'celix-bootstrap',
version = '0.1.0',
url = '',
author = '',
author_email = '',
description =
'celix-bootstrap: A code generator / project generator for Apache Celix.',
license = 'Apache License, Version 2.0',
packages = [
'celix',
'celix/bootstrap'
],
scripts = [
'scripts/celix-bootstrap',
],
package_data={'celix' : ['bootstrap/templates/**/*']},
)