mirror of
https://gitlab.com/keys.openpgp.org/hagrid.git
synced 2025-10-05 16:12:44 +02:00
13 lines
246 B
Python
13 lines
246 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='wkd-domain-checker',
|
|
version='1.0',
|
|
# Modules to import from other scripts:
|
|
packages=find_packages(),
|
|
# Executables
|
|
scripts=["wkd-domain-checker.py"],
|
|
)
|