forked from FRXCZDev/my-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tes.py
30 lines (26 loc) · 933 Bytes
/
tes.py
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
from setuptools import setup, find_packages
def read(path: str) -> str:
with open(path, 'r', encoding='utf-8') as f:
return f.read()
setup(
name='tempmail-python',
version='2.3.3',
description='Python library for generating and managing temporary email addresses.',
long_description=read('README.md'),
long_description_content_type='text/markdown',
author='cubicbyte',
author_email='bmaruhnenko@gmail.com',
url='https://github.com/cubicbyte/tempmail-python',
packages=find_packages(),
license='MIT',
keywords='disposable-email temporary-email temp-email temp-mail email mail email-generator mail-generator',
install_requires=[
'requests>=2.19.0',
],
python_requires='>=3.7',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
)