forked from juliensobrier/google-safe-browsing-lookup-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 1.02 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
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
requirements = []
setup(
name='Google Safe Browsing v2 Lookup',
version='0.2.0',
py_modules=['safebrowsinglookup'],
description='Client to interact with the Google Safe Browsing v2 Lookup API',
long_description=read('README'),
url='https://github.com/juliensobrier/google-safe-browsing-lookup-python',
license='Apache',
author='Julien Sobrier',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
packages=find_packages(),
namespace_packages=["safebrowsinglookup"],
install_requires=requirements,
)