~registry/hyberia/0.2

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
#!/usr/bin/env python
#
# Eiffel Forum License, version 2
#
# 1. Permission is hereby granted to use, copy, modify and/or
#    distribute this package, provided that:
#       * copyright notices are retained unchanged,
#       * any distribution of this package, whether modified or not,
#         includes this license text.
# 2. Permission is hereby also granted to distribute binary programs
#    which depend on this package. If the binary program depends on a
#    modified version of this package, you are encouraged to publicly
#    release the modified version of this package.
#
# THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT WARRANTY. ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE TO ANY PARTY FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS PACKAGE.
from distutils.core import setup, Extension

setup(name='touei',
      version='0.2',
      description='Schedule projection system',
      author='G-Anime',
      author_email='projection@sajg.net',
      url='http://elwillow.net/touei',
      packages=['touei'],
      #ext_modules=[Extension("libreadconfig", ["readconfig/readconfig.cpp"]),
      #             Extension("toueid", ["toueid/toueid.c"])
      #            ],
      scripts=['touei_run', 'touei_run', 'touei_deploy', 'touei_deploy'],
      data_files=[('/etc/', ["cfg/touei.conf"]),
                 ],
     )