~registry/hyberia/0.4

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Mathieu Charron
  • Date: 2010-08-08 00:44:00 UTC
  • Revision ID: mathieu.charron@elwillow.net-20100808004400-966qunvdyx47c9pn
First bactch of change to update the project name to HYBERIA.
NOT FUNCTIONAL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
# DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS PACKAGE.
21
21
from distutils.core import setup, Extension
22
22
 
23
 
setup(name='touei',
24
 
      version='0.2.1',
 
23
setup(name='hyberia',
 
24
      version='0.3.2',
25
25
      description='Schedule projection system',
26
26
      author='G-Anime',
27
 
      author_email='projection@sajg.net',
28
 
      url='http://elwillow.net/touei',
29
 
      packages=['touei'],
30
 
      #ext_modules=[Extension("libreadconfig", ["readconfig/readconfig.cpp"]),
31
 
      #             Extension("toueid", ["toueid/toueid.c"])
32
 
      #            ],
33
 
      scripts=['touei_run', 'touei_run', 'touei_deploy', 'touei_deploy'],
34
 
      data_files=[('/etc/', ["cfg/touei.conf"]),
 
27
      author_email='mathieu@hyberia.org',
 
28
      url='http://hyberia.org',
 
29
      packages=['hyberia'],
 
30
      scripts=['hyberiactl', 'hyberiactl', 'hyberia_deploy', 'hyberia_deploy'],
 
31
      data_files=[('/etc/', ["cfg/hyberia.conf"]),
35
32
                 ],
36
33
     )