-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (32 loc) · 1.05 KB
/
setup.py
File metadata and controls
executable file
·35 lines (32 loc) · 1.05 KB
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
from setuptools import setup, find_packages
try:
with open('README.rst', encoding='utf-8') as f:
readme = f.read()
except FileNotFoundError:
readme = ''
try:
with open('CHANGES.rst', encoding='utf-8') as f:
history = f.read().replace('.. :changelog:', '')
except FileNotFoundError:
history = ''
setup(
name="python_clamd",
version='0.0.1.dev0',
author="janus-sama",
author_email="zino4onowori@gmail.com",
maintainer="janus-sama",
maintainer_email="zino4onowori@gmail.com",
keywords="python, clamav, antivirus, scanner, virus, libclamav, clamd",
description="Updated Clamd is a python interface to Clamd (Clamav daemon).",
long_description=readme + '\n\n' + history,
url="https://github.com/janus-sama/python_clamd",
package_dir={'': 'src'},
packages=find_packages('src', exclude="tests"),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
license="LGPL-2.1-only",
zip_safe=True,
include_package_data=False,
)