forked from brenns10/notifyme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 989 Bytes
/
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
from setuptools import setup
long_description = open('README.rst').read()
setup(
name='notifyme',
version='0.1.1',
description='Email notifications on task completion',
long_description=long_description,
url='https://github.com/brenns10/notifyme',
author='Stephen Brennan',
author_email='[email protected]',
license='Revised BSD',
py_modules=['notifyme'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Environment :: Console',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Communications :: Email :: Email Clients (MUA)',
'Topic :: Utilities',
],
keywords='notify notifications email',
entry_points={
'console_scripts': [
'notifyme=notifyme:_main',
],
},
)