-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 1.07 KB
/
setup.py
File metadata and controls
30 lines (27 loc) · 1.07 KB
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
import os
from setuptools import setup, find_packages
version = "0.1.7dev"
README = os.path.join(os.path.dirname(__file__), 'README.txt')
long_description = open(README).read() + '\n\n'
setup(name="sikwan.spfcheck",
version=version,
description=("A package to check SPF status"),
long_description=long_description,
install_requires=["dnspython", "netaddr"],
keywords="sikwan spf spfcheck",
author="Francois Vanderkelen",
author_email="vanderkelen.francois@gmail.com",
url="https://github.com/Sikwan/spfcheck",
license="GPL",
packages=find_packages(),
namespace_packages=['sikwan'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: Unix',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)