File: setup.py

package info (click to toggle)
hijra 1.0-5
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid
  • size: 368 kB
  • sloc: python: 734; sh: 438; javascript: 9; makefile: 6
file content (22 lines) | stat: -rw-r--r-- 758 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python3

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

setup (name='hijra', version='1.0',
      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']),
      ]
)