-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
56 lines (50 loc) · 1.41 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import pathlib
import setuptools
def from_file(*names, encoding='utf8'):
return pathlib.Path(
pathlib.Path(__file__).parent, *names
).read_text(encoding=encoding)
version = {}
contents = pathlib.Path('src/pukpuk/version.py').read_text()
exec(contents, version)
setuptools.setup(
name='pukpuk',
version=version['__version__'],
description='HTTP discovery toolkit',
long_description=from_file('README.md'),
long_description_content_type='text/markdown',
license='MIT License',
url='https://github.com/tasooshi/pukpuk/',
author='tasooshi',
author_email='[email protected]',
keywords=[
'HTTP',
'scanning',
'discovery',
],
python_requires='>=3.8',
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
install_requires=(
'netaddr==0.8.0',
'pyOpenSSL==22.0.0',
'dnspython==2.2.1',
'requests==2.28.1',
'Pillow==9.2.0',
),
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
entry_points={
'console_scripts': [
'pukpuk = pukpuk.cli:main'
]
},
)