-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (39 loc) · 1.08 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
#!/usr/bin/env python
#
# Setup prog for APPA
#
#
import commands
import os
import re
import sys
from appa import aframework
release_version=aframework.__version__
from distutils.core import setup
from distutils.command.install import install as install_org
from distutils.command.install_data import install_data as install_data_org
# ===========================================================
# setup for distutils
setup(
name="appa",
version=release_version,
description='APPA package',
long_description='''This package contains the package APPA''',
license='GPL',
author='jcaballero, oglez',
author_email='EMAIL',
maintainer='MAINTAINER',
maintainer_email='MEMAIL',
url='https://github.com/jose-caballero/APPA',
packages=['appa',
'appa.external',
'appa.plugins',
'appa.plugins.event',
'appa.plugins.event.selection',
'appa.plugins.event.scale',
],
scripts = [ # Utilities and main script
'bin/appa',
],
data_files = []
)