Skip to content

Commit

Permalink
+ setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tkrajina committed Aug 9, 2012
1 parent 31b4e22 commit 29a8ee1
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/usr/bin/python

# Copyright 2011 Tomo Krajina
#
# Licensed 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.

import distutils.core as mod_distutilscore
import oneapi as mod_oneapi

mod_distutilscore.setup(
name = 'oneapi-python',
version = mod_oneapi.AbstractOneApiClient.VERSION,
description = 'OneApi python library',
license = 'Apache License, Version 2.0',
author = 'Tomo Krajina',
author_email = 'tkrajina@gmail.com',
url = 'https://github.com/parseco/oneapi-python',
packages = [
'oneapi',
],
)

0 comments on commit 29a8ee1

Please sign in to comment.