-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
executable file
·36 lines (34 loc) · 1.26 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import io
from setuptools import setup, find_packages
setup(name='pdlist',
version='0.1.0',
description='A passive subdomain finder',
keywords='pdlist',
author='gnc',
author_email='nebbionegiuseppe@gmail.com',
url='https://github.com/gnebbia/pdlist',
license='3-clause BSD',
long_description=io.open(
'./docs/README.rst', 'r', encoding='utf-8').read(),
platforms='any',
zip_safe=False,
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=['Development Status :: 1 - Planning',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(exclude=('tests',)),
include_package_data=True,
install_requires=['dnsdumpster','requests', 'BeautifulSoup4'],
entry_points={
'console_scripts':[
'pdlist = pdlist.main:main',
]
},
)