summaryrefslogtreecommitdiffstats
path: root/pychathans/setup.py
blob: 51894498a0f8c1f45dbe325004b616f099a9c141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
"""Chathans is a GUI for the ASCII to Unicode converter, Payyans.It is written in PyGTK. """
from distutils.core import setup

doclines = __doc__.split("\n")
setup(name='chathans',
      version='0.2',
      description=doclines[0],
      long_description = "\n".join(doclines[:]),
      platforms = ["Linux"],
      requires = ["payyans"],
      author='Rajeesh K Nambiar',
      author_email='rajeeshknambiar@gmail.com',
      url='http://wiki.smc.org.in/Chathans',
      license = 'http://www.gnu.org/copyleft/gpl.html',
      packages=['src'],
      data_files=[('/usr/bin',['src/chathans']),
	       ('/usr/share/doc/chathans-0.2',['doc/README','doc/LICENSE'])]
      )