blob: a1f5e0fc9ce08fe43ef8d21261ca0a6587e76b29 (
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
|
#!/usr/bin/env python
"""
REPA: Release Engineering Process Assistant.
Copyright (C) Intel Corporation 2013
Licence: GPL version 2
Author: Ed Bartosh <eduard.bartosh@intel.com>
Setup module
"""
import os
from setuptools import setup
setup(name = "repa",
version = '0.0.1',
author = 'Ed Bartosh',
author_email = 'eduard.bartosh@intel.com',
packages = ['repa'],
namespace_packages = ['repa'],
data_files = [
('share/doc/packages/repa/', ['README']),
(['/etc', 'etc'][bool(os.getenv('VIRTUAL_ENV'))], ['repa.conf'])],
entry_points = {
'console_scripts': ['repa = repa.main:main'],
'repa_commands': ['list = repa.list:List',
'group = repa.group:Group']
}
)
|