38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
from setuptools import setup
|
|
from codecs import open
|
|
from os import path
|
|
|
|
here = path.abspath(path.dirname(__file__))
|
|
|
|
__version__ = '0.0.14'
|
|
|
|
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name='disposable-email-domains',
|
|
version=__version__,
|
|
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'],
|
|
},
|
|
)
|