-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (36 loc) · 1.02 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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
long_description = """
A simple email bot for installing plugins which do various useful
tasks. Comes with a simple example command which echoes an email back
to the sender.
"""
setup(
name='cary',
url='https://github.com/vputz/cary',
version='1.0.1',
description='a simple "email-bot" framework',
long_description=long_description,
author='Victor Putz',
author_email='vputz@nyx.net',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Communications :: Email',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='email',
packages=['cary'],
install_requires=[],
extras_require={},
package_data={},
data_files=[],
entry_points={
'console_scripts': [
'cary = cary.__main__:main'
]
},
)