-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
executable file
·28 lines (25 loc) · 948 Bytes
/
setup.py
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
#!/usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
readme = open('README.rst').read()
history = open('CHANGES.rst').read().replace('.. :changelog:', '')
setup(
name="clamd",
version='1.0.3.dev0',
author="Thomas Grainger",
author_email="[email protected]",
maintainer="Thomas Grainger",
maintainer_email = "[email protected]",
keywords = "python, clamav, antivirus, scanner, virus, libclamav, clamd",
description = "Clamd is a python interface to Clamd (Clamav daemon).",
long_description=readme + '\n\n' + history,
url="https://github.com/graingert/python-clamd",
package_dir={'': 'src'},
packages=find_packages('src', exclude="tests"),
classifiers = [
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
],
zip_safe=True,
include_package_data=False,
)