forked from passivetotal/python_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.05 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
35
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='passivetotal',
version='1.0.31',
description='Client for the PassiveTotal REST API',
url="https://github.com/passivetotal/python_api",
author="Research Team, passivetotal",
author_email="[email protected]",
license="GPLv2",
packages=find_packages(),
install_requires=['requests', 'ez_setup', 'python-dateutil', 'future'],
long_description=read('README.rst'),
classifiers=[],
entry_points={
'console_scripts': [
'pt-info = passivetotal.cli.info:main',
'pt-config = passivetotal.cli.config:main',
'pt-client = passivetotal.cli.client:main',
],
},
package_data={
'passivetotal': [],
},
include_package_data=True,
zip_safe=False,
keywords=['threats', 'research', 'analysis'],
download_url='https://github.com/passivetotal/python_api/archive/master.zip'
)