You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
595 B
20 lines
595 B
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
from fuglu_safebrowsing import VERSION
|
|
|
|
setup(
|
|
name='fuglu-safebrowsing',
|
|
version=VERSION,
|
|
description='Fuglu plugin for the Google Safebrowsing API',
|
|
author='Johann Schmitz',
|
|
author_email='johann@j-schmitz.net',
|
|
url='https://code.not-your-server.de/fuglu-safebrowsing.git',
|
|
download_url='https://code.not-your-server.de/fuglu-safebrowsing.git/tags/',
|
|
packages=find_packages(exclude=('tests', )),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
license='GPL-3',
|
|
)
|