-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (32 loc) · 1.15 KB
/
setup.py
File metadata and controls
executable file
·36 lines (32 loc) · 1.15 KB
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
from distutils.core import setup
from setuptools import find_packages
if __name__ == '__main__':
setup(
name = "gnegar",
version = "0.1.1",
author = "Ramin Najjarbashi",
author_email = "Ramin.Najarbashi@gmail.com",
#packages = find_packages() + ['lib'],
package_dir = {'':'lib'},
packages = [''],
scripts=['bin/gnegar'],
description = "Negar is a spell corrector and Persian text editor",
license = "GPL",
url = "http://RaminNietzsche.github.com/GuiNegar",
keywords=['spellcheck','Persian','editor','python'],
data_files = [('share/doc/gnegar',['README', 'COPYING', 'CHANGES']),
('share/man/man1/', ['man/gnegar.1']),
('share/applications/',['etc/gnegar.desktop']),
('share/icons/',['etc/gnegar.png']) ],
classifiers=[
'Development Status :: 0 - Beta',
'Intended Audience :: Persian Users',
'Intended Audience :: Persian Programmers',
'License :: OSI Approved :: GNU General Public License v3',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Editor',
'Topic :: Persian',
'Topic :: Spellcheck'
],
)