File: setup.py

package info (click to toggle)
hijra 0.2.1-1
  • links: PTS, VCS
  • area: non-free
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 292 kB
  • ctags: 116
  • sloc: python: 583; makefile: 4
file content (22 lines) | stat: -rw-r--r-- 758 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /usr/bin/python

from distutils.core import setup
from glob import *
# to install type: 
# python setup.py install --root=/

setup (name='hijra', version='0.1',
      description='Hijri Islamic Calendar',
      author='Muayyad Saleh Alsadi',
      author_email='alsadi@ojuba.org',
      url='http://hijra.ojuba.org/',
      license='Waqf',
      py_modules=['hijra','HijriCal'],
      scripts=['HijriApplet'],
      data_files=[('/usr/share/doc/python-hijra', glob('*.html') ),
                  ('/usr/share/gnome-shell/extensions/HijriApplet@ojuba.org', glob('gnome-shell-extension/*') ),
                  ('/usr/share/hijra/hijra-data',['hijra-data/cal-template.svg']),
                  ('/etc/xdg/autostart',['hijra-autostart.desktop']),
      ]
)