-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 825 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 825 Bytes
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
#!/usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
readme = open('README.rst').read()
history = open('CHANGES.rst').read().replace('.. :changelog:', '')
setup(
name="pyvalve",
version='0.1.2',
author="bsacks99",
keywords = "python, asyncio, clamav, antivirus, scanner, virus, libclamav, clamd",
description = "Asyncio python clamd client",
long_description=readme + '\n\n' + history,
url="https://github.com/bradsacks99/pyvalve",
readme="README.md",
license="LICENSE"
package_dir={'': 'src'},
packages=find_packages('src', exclude="tests"),
classifiers = [
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
],
zip_safe=True,
include_package_data=False,
)