-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (52 loc) · 1.96 KB
/
setup.py
File metadata and controls
56 lines (52 loc) · 1.96 KB
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
54
55
56
import os
import pathlib
from setuptools import setup, find_packages
current_path = pathlib.Path(__file__).parent
with open(os.path.join(current_path, 'requirements.txt'), encoding='utf-8') as f:
install_requires = f.read().split('\n')
"""
print(install_requires)
print(open('PYPI_DESCRIPTION.md', 'r', encoding='utf-8').read())
"""
setup(
name='quick-mail',
description='A simple commandline application for sending mails quickly',
version='1.0.4',
install_requires=install_requires,
author='Avi Kumar Singh',
author_email='avikumar.singh1508@gmail.com',
python_requires='>=3.0',
long_description_content_type="text/markdown",
long_description=open('PYPI_DESCRIPTION.md', 'r', encoding='utf-8').read(),
packages=find_packages(),
# package_dir={'': 'quickmail'},
entry_points={'console_scripts': ['quickmail=quickmail.cli:execute']},
url='https://github.com/avikumar15/quick-email-cli',
license="MIT",
keywords=['CLI', 'gmail', 'email'],
# platforms='any',
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
'Topic :: Education',
'Topic :: Communications',
'Topic :: Communications :: Email',
'Topic :: Internet',
'Topic :: Terminals',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Education',
'Intended Audience :: Other Audience',
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft',
'Operating System :: Microsoft :: Windows',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: OS Independent',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)