-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (29 loc) · 980 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
from setuptools import setup, find_packages
__version__ = '0.9.2'
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="ddfr",
version=__version__,
author="Playtika Ltd.",
author_email="[email protected]",
description="A lightweight Python utility to detect dns records that are suspected as dangling.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PlaytikaSecurity/ddfr",
packages=find_packages(exclude=['tests*']),
install_requires=requirements,
python_requires='>=3.7',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'ddfr=ddfr.ddfr:interactive',
],
},
)