forked from vstoykov/django-clamd
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
45 lines (43 loc) · 1.45 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
from setuptools import find_packages, setup
with open("README.md") as readme:
readme = readme.read()
setup(
name="django-clamav",
version="0.5.0",
keywords="python, django, clamav, antivirus, scanner, virus, libclamav, clamd",
description="django-clamav is a django integration with Clamd (Clamav daemon).",
long_description=readme,
url="https://github.com/QueraTeam/django-clamav",
package_dir={"": "src"},
packages=find_packages("src", exclude="tests"),
package_data={
"django_clamav": [
"locale/*/LC_MESSAGES/*.po",
"locale/*/LC_MESSAGES/*.mo",
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 1.8",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
install_requires=(
"clamd",
"Django>=1.4",
),
tests_require=("nose==1.3.7",),
test_suite="nose.collector",
zip_safe=False,
include_package_data=True,
)