File: setup.py

package info (click to toggle)
pyzor 1%3A1.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 868 kB
  • sloc: python: 7,266; makefile: 153; sh: 28
file content (42 lines) | stat: -rw-r--r-- 1,271 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import sys
import setuptools
import distutils.core

import pyzor

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

classifiers = [
    "Operating System :: POSIX",
    "Operating System :: Microsoft :: Windows",
    "Environment :: Console",
    "Environment :: No Input/Output (Daemon)",
    "Programming Language :: Python",
    "Programming Language :: Python :: 2.6",
    "Programming Language :: Python :: 3",
    "Intended Audience :: System Administrators",
    "Topic :: Communications :: Email",
    "Topic :: Communications :: Email :: Filters",
    "Development Status :: 5 - Production/Stable",
    "License :: OSI Approved :: GNU General Public License v2 (" "GPLv2)",
]

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://www.pyzor.org/",
    scripts=["scripts/pyzor", "scripts/pyzord", "scripts/pyzor-migrate"],
    packages=["pyzor", "pyzor.engines", "pyzor.hacks"],
    classifiers=classifiers,
    test_suite="tests.suite",
)