Files
disposable-email-domains/setup.py
Dustin Ingram eb7dd24a4a Version 0.0.3
2016-11-21 14:57:33 -05:00

36 lines
1.1 KiB
Python

from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='disposable-email-domains',
version='0.0.3',
description='A set of disposable email domains',
long_description=long_description,
url='https://github.com/di/disposable-email-domains',
author='Dustin Ingram',
author_email='github@dustingram.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='disposable email domains blacklist',
packages=['disposable_email_domains'],
extras_require={
'dev': ['check-manifest'],
},
)