-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsetup.py
28 lines (26 loc) · 917 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
import versioneer
setup(name='gglsbl',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Client library for Google Safe Browsing Update API v4",
classifiers=[
"Operating System :: POSIX",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Internet",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='google safe browsing api client',
author='Aleh Filipovich',
author_email='[email protected]',
url='https://github.com/afilipovich/gglsbl',
license='Apache2',
packages=['gglsbl'],
install_requires=['google-api-python-client>=1.4.2,<2'],
scripts=['bin/gglsbl_client.py'],
)