-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
34 lines (32 loc) · 893 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
33
34
from setuptools import setup, find_packages
version = '2.0'
setup(
name='ever2simple',
version=version,
description=(
"Migrate from evernote to simplenote with markdown formatting"),
long_description=(
open("README.rst").read() +
'\n\n' +
open("HISTORY.rst").read()
),
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[],
keywords='note taking migration',
author='Clayton Parker',
author_email='[email protected]',
url='http://claytron.com',
license='',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'lxml',
'python-dateutil<2.0',
'html2text',
],
entry_points="""
[console_scripts]
ever2simple = ever2simple.core:main
""",
)