File: setup.py

package info (click to toggle)
python-clamav 0.4.1-8%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 164 kB
  • sloc: ansic: 473; python: 102; makefile: 26
file content (27 lines) | stat: -rw-r--r-- 1,201 bytes parent folder | download | duplicates (6)
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

from distutils.core import setup, Extension

pyclamav = Extension('pyclamav',
                    sources = ['pyclamav.c'], 
		    libraries = ['clamav'],
		    library_dirs=['/usr/local/lib'])

# Build : python setup.py build
# Install : python setup.py install
# Register : python setup.py register

#  platform = 'Unix',
#  download_url = 'http://xael.org/norman/python/pyclamav/',


setup (name = 'pyclamav',
       version = '0.4.1',
       author = 'Alexandre Norman',
       author_email = 'norman()xael.org',
       license ='GPL',
       keywords="python, clamav, antivirus, scanner, virus, libclamav",
       url = 'http://xael.org/norman/python/pyclamav/',
       include_dirs = ['/usr/local/include'],
       description = 'This is a python binding to the C libclamav library (from the Clamav project - http://www.clamav.net). It can be used to easily allow a Python script to scan a file or a buffer against known viruses.',
       long_description = 'This is a python binding to the C libclamav library (from the Clamav project - http://www.clamav.net). It can be used to easily allow a Python script to scan a file or a buffer against known viruses.',
       ext_modules = [pyclamav])