-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (32 loc) · 1.04 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
from setuptools import setup
def read_file(fname):
with open(fname, 'r') as f:
return f.read()
setup(name = "uvscand",
version = "0.0.5",
author = "Thomas Oettli",
author_email = "[email protected]",
description = "A python daemon to perform virus scans with uvscan (McAfee) over TCP socket.",
license = "GPL 3",
keywords = "rspamd uvscan",
url = "https://github.com/spacefreak86/uvscand",
packages = ["uvscand"],
long_description = read_file("README.md"),
classifiers = [
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Communications :: Email :: Virus"
],
entry_points = {
"console_scripts": [
"uvscand=uvscand:main"
]
},
python_requires = ">=3.7"
)