-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.2 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
36
37
38
39
40
41
import os
from setuptools import setup, find_packages
import versioneer
# vagrant doesn't appreciate hard-linking
if os.environ.get('USER') == 'vagrant' or os.path.isdir('/vagrant'):
del os.link
setup(
name="ri_pdnssdk",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="RI PassiveDNS SDK",
long_description="Software Development Kit for REN-ISAC Passive DNS",
url="https://github.com/renisac/pdnssdk-py",
license='LGPL3',
classifiers=[
"Topic :: System :: Networking",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python",
],
keywords=['security'],
author="Wes Young",
author_email="[email protected]",
packages=find_packages(),
install_requires=[
'prettytable>=0.7.2',
'pyaml>=15.03.1',
'requests>=2.6.0',
'urllib3>=1.10.2',
'pytest>=2.9.2',
],
scripts=[],
entry_points={
'console_scripts': [
'pdns=ri_pdnssdk.client:main',
]
},
)