-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·33 lines (29 loc) · 940 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
29
30
31
32
33
"""
LibClamAV ctypes binding
"""
import setuptools
__verison__ = "1.0.1"
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="py-clamav",
version=__verison__,
license='MIT',
author="dmitriym09",
author_email='dmitriym.09.12.1989@gmail.com',
description="LibClamAV ctypes binding",
keywords=['antivirus', 'ClamAv', 'LibClamAV'],
url="https://github.com/dmitriym09/py-clamav",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(where="src", exclude=["tests", "tests.*"]),
package_dir={"": "src"},
python_requires='>=3.8',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Operating System :: POSIX :: Linux'
],
)