-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
52 lines (50 loc) · 1.88 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
46
47
48
49
50
51
52
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as readme:
readme = readme.read()
setup(
name="django-clamd",
version='1.0.0',
author="Venelin Stoykov",
author_email="vkstoykov@gmail.com",
maintainer="Venelin Stoykov",
maintainer_email="vkstoykov@gmail.com",
keywords="python, django, clamav, antivirus, scanner, virus, libclamav, clamd",
description="django-clamd is a django integration with Clamd (Clamav daemon).",
long_description=readme,
url="https://github.com/vstoykov/django-clamd",
download_url="https://github.com/vstoykov/django-clamd/releases",
bugtrack_url="https://github.com/vstoykov/django-clamd/issues",
package_dir={'': 'src'},
packages=find_packages('src', exclude="tests"),
package_data={'django_clamd': [
'locale/*/LC_MESSAGES/*.po',
'locale/*/LC_MESSAGES/*.mo',
]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", # noqa
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
install_requires=(
"clamd",
"Django>=1.4",
),
zip_safe=False,
include_package_data=True,
)