-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (34 loc) · 938 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
35
36
from setuptools import setup, find_packages
version = '0.3'
setup(
name='ever2text',
version=version,
description=(
"Convert Evernote exports to text files"),
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='Nicholas Kuechler',
author_email='[email protected]',
url='http://nicholaskuechler.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',
'beautifulsoup4',
'future',
],
entry_points="""
[console_scripts]
ever2text = ever2text.core:main
""",
)