File: setup.py

package info (click to toggle)
bley 0.1.4-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 204 kB
  • ctags: 49
  • sloc: python: 525; sh: 144; makefile: 5
file content (16 lines) | stat: -rw-r--r-- 481 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup

setup(
    name = "bley",
    version = "0.1.4",
    description = "intelligent greylisting daemon for postfix",
    author = "Evgeni Golov",
    author_email = "sargentd@die-welt.net",
    url = "http://bley.mx",
    license = "BSD",
    py_modules = ['bley', 'bleyhelpers', 'postfix'],
    scripts = ['bley'],
    zip_safe = False,
    install_requires=['Twisted-Core>=8.1.0', 'pyspf', 'psycopg2'],
    data_files = [('/etc/bley', ['bley.conf'])]
)