File: setup.py

package info (click to toggle)
pyzor 1%3A0.4.0%2Bcvs20030201-8
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 356 kB
  • ctags: 394
  • sloc: python: 1,590; sh: 617; makefile: 16
file content (26 lines) | stat: -rw-r--r-- 909 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
23
24
25
26
import sys
import distutils.core

sys.path.insert(0, 'lib')
import pyzor

long_description = """
Pyzor is spam-blocking networked system that uses spam signatures
to identify them.
"""

distutils.core.setup( name = 'pyzor',
                      version = pyzor.__version__,
                      description = 'networked spam-signature detection',
		      long_description = long_description,
                      author = 'Frank J. Tobin',
                      author_email = 'ftobin@neverending.org',
		      license = 'GPL',
		      platforms = 'POSIX',
		      keywords = 'spam',
                      url = 'http://pyzor.sourceforge.net/',
                      scripts=['scripts/pyzor', 'scripts/pyzord'],
                      package_dir = {'': 'lib'},
                      packages = ['pyzor'],
                      data_files=[('share/doc/pyzor', ['docs/usage.html'])],
                      )