-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
27 lines (26 loc) · 921 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup # type: ignore
setup(
name='pyeupi',
version='1.1',
author='Raphaël Vinot',
author_email='[email protected]',
maintainer='Raphaël Vinot',
url='https://github.com/CIRCL/PyEUPI',
description='Python API for the European Union anti-phishing initiative.',
packages=['pyeupi'],
entry_points={"console_scripts": ["pyeupi = pyeupi:main"]},
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Internet',
],
install_requires=['requests'],
package_data={'': ['*.md', '*.rst', 'LICENSE']},
)