forked from censys/censys-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 858 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
29
30
31
32
33
import os
from setuptools import setup, find_packages
import censys
here = os.path.abspath(os.path.dirname(__file__))
setup(
name='censys',
version=censys.__version__,
description='Python library for interacting with Censys Search Engine (censys.io)',
long_description='Python library for interacting with Censys Search Engine (censys.io)',
classifiers=[
"Programming Language :: Python",
],
author=censys.__author__,
author_email=censys.__email__,
license=censys.__license__,
url='https://github.com/censys/censys-python',
keywords='censys',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
"requests",
"netaddr"
],
entry_points={
'console_scripts': [
'censys = censys.__main__:main',
]
}
)