Skip to content

Commit

Permalink
fix setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mlodic committed Jun 28, 2024
1 parent 0daf6b1 commit 52d7954
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages
from setuptools import setup

with open('README.md') as f:
readme = f.read()
Expand All @@ -12,17 +12,16 @@
]

setup(
name = 'domaincheck-fork',
version = '0.1',
description = 'check security aspects of a second-level domain name',
long_description= readme,
keywords = 'CAA DMARC DNS DNSKEY DNSSEC MTA-STS SPF TLS-RPT',
author = 'Jan Schaumann, Zuza Slawik',
author_email = '[email protected], [email protected]',
license = 'Apache',
url = 'https://github.com/zuzazuza/domaincheck',
install_requires= REQUIREMENTS,
scripts = [ 'domaincheck/domaincheck' ],
data_files = [ ('share/man/man1', [ 'doc/domaincheck.1' ]) ],
packages = ["domaincheck"],
name='domaincheck-fork',
version='0.1',
description='check security aspects of a second-level domain name',
keywords='CAA DMARC DNS DNSKEY DNSSEC MTA-STS SPF TLS-RPT',
author='Jan Schaumann, Zuza Slawik',
author_email='[email protected], [email protected]',
license='Apache',
url='https://github.com/intelowlproject/domaincheck/',
install_requires=REQUIREMENTS,
scripts=['domaincheck/domaincheck'],
data_files=[('share/man/man1', ['doc/domaincheck.1'])],
packages=["domaincheck"],
)

0 comments on commit 52d7954

Please sign in to comment.