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 49 50 51 52
|
#!/usr/bin/python3
"""Setup
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', '')
requirements = [
'ofxstatement'
]
setup(name='ofxstatement-simple',
version='0.1.0',
author="Chris Mayes",
author_email="cmayes@cmay.es",
url="https://github.com/cmayes/ofxstatement-simple",
description="Simple (the bank) plugin for ofxstatement",
long_description=readme + '\n\n' + history,
license="GPLv3",
keywords=["ofx", "banking", "statement"],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Natural Language :: English',
'Topic :: Office/Business :: Financial :: Accounting',
'Topic :: Utilities',
'Environment :: Console',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU Affero General Public License v3'],
packages=[
'ofxstatement', 'ofxstatement.plugins',
],
package_dir={'ofxstatement': 'ofxstatement',
'ofxstatement.plugins': 'ofxstatement/plugins'},
namespace_packages=["ofxstatement", "ofxstatement.plugins"],
entry_points={
'ofxstatement':
['simple = ofxstatement.plugins.simple:SimpleBankPlugin']
},
install_requires=requirements,
include_package_data=True,
zip_safe=True,
test_suite='tests',
tests_require=requirements
)
|