17 lines
460 B
Python
17 lines
460 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
with open('README.md') as file:
|
|
long_description = file.read()
|
|
|
|
setup(
|
|
name="webmail-domains",
|
|
version="0.15",
|
|
py_modules="webmail_domains",
|
|
url='https://github.com/zevaverbach/Webmail-Domains',
|
|
packages=['webmail_domains',],
|
|
description=('A pretty thorough list of webmail domains!'),
|
|
long_description_content_type='text/markdown',
|
|
long_description=long_description,
|
|
)
|