Skip to content

Commit

Permalink
fix setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mlodic committed Jul 20, 2024
1 parent 52d7954 commit 8513633
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# General
.DS_Store
build
dist
File renamed without changes.
8 changes: 4 additions & 4 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
from setuptools import setup, find_packages

with open('README.md') as f:
readme = f.read()
Expand All @@ -13,15 +13,15 @@

setup(
name='domaincheck-fork',
version='0.1',
version='0.2',
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'],
scripts=['domaincheck/domaincheck.py'],
data_files=[('share/man/man1', ['doc/domaincheck.1'])],
packages=["domaincheck"],
packages=find_packages(),
)

0 comments on commit 8513633

Please sign in to comment.