-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
56 lines (47 loc) · 1.22 KB
/
setup.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
from setuptools import setup,find_packages
packages = ['germail']
package_data = {'': ['*']}
install_requires = ['random-username>=1.0.2,<2.0.0', 'requests']
with open("README.md", "r",encoding="utf-8") as stream:
long_description = stream.read()
setup(
name='germail',
license='MIT',
version='1.0.2',
description='A python api create temporary mail',
long_description_content_type="text/markdown",
author='kira_xc',
author_email='[email protected]',
url='https://github.com/kira-xc/Germail',
packages=find_packages(),
package_data=package_data,
install_requires=install_requires,
long_description=long_description,
keywords=[
'geras',
'geras email',
'temp email',
'temp mail',
'germail',
'geras mail',
'gerasmail',
'kira_xc',
'python3.x',
'kira-xc',
'temporary',
'temporary mail',
'temporary email',
'mail.tm',
'mohmal',
'temp-mail',
'ايميل',
'ايميل مؤقت',
'مهمل',
'بايثون',
'tempmail',
'temp-mail',
'جيرس'
],
python_requires='>=3.7',
)