comparison setup.py @ 9:28548158a325 default tip

Some minor improvements/fixes This will eventually evolve to something more generic, since I have re-used the same design, and some of the parts here, to write a plugin for Charles Schwab.
author Louis Opter <louis@opter.org>
date Thu, 09 Mar 2017 22:55:02 -0800
parents 829eb62755b0
children
comparison
equal deleted inserted replaced
8:164da24a2997 9:28548158a325
25 setuptools.setup( 25 setuptools.setup(
26 name='ofxstatement-us-hsbc', 26 name='ofxstatement-us-hsbc',
27 version=version, 27 version=version,
28 author="Louis Opter", 28 author="Louis Opter",
29 author_email="louis@opter.org", 29 author_email="louis@opter.org",
30 url="https://github.com/lopter/ofxstatement", 30 url="https://github.com/lopter/ofxstatement-us-hsbc",
31 description=("HSBC (USA) plugin for ofxstatement"), 31 description=("HSBC (USA) plugin for ofxstatement"),
32 long_description=long_description, 32 long_description=long_description,
33 license="GPLv3", 33 license="GPLv3",
34 keywords=["ofx", "banking", "statement", "hsbc", "plugin"], 34 keywords=["ofx", "banking", "statement", "hsbc", "plugin"],
35 classifiers=[ 35 classifiers=[
55 ], 55 ],
56 extras_require={ 56 extras_require={
57 "dev": [ 57 "dev": [
58 "flake8", 58 "flake8",
59 "mypy-lang", 59 "mypy-lang",
60 "typed-ast",
60 "ipython", 61 "ipython",
61 "pdbpp", 62 "pdbpp",
62 "pep8", 63 "pep8",
63 ] 64 ]
64 }, 65 },