-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (28 loc) · 898 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
#!/usr/bin/env python
# encoding: utf-8
from setuptools import setup
setup(
name="nele",
version="0.5.0.dev",
packages=['nele'],
author="Raphael Zimmermann",
author_email="dev@raphael.li",
url="https://github.com/raphiz/nele",
description="Send fancy newsletters with markdown",
long_description=("For more information, please checkout the `Github Page "
"<https://github.com/raphiz/nele>`_."),
license="GPL",
platforms=["Linux"],
include_package_data=False,
zip_safe=False,
install_requires=['py-gfm', 'python-frontmatter', 'jinja2', 'docopt'],
entry_points={
'console_scripts':
['nele = nele:main']
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
"Programming Language :: Python :: Implementation :: CPython"
],
)