comparison setup.py @ 0:1f85ed8ed469

Iniitial commit of sample ofxstatement plugin
author Andrey Lebedev <andrey@lebedev.lt>
date Sat, 02 Nov 2013 14:26:03 +0200
parents
children 2b39e0f9d465
comparison
equal deleted inserted replaced
-1:000000000000 0:1f85ed8ed469
1 #!/usr/bin/python3
2 """Setup
3 """
4 from setuptools import find_packages
5 from distutils.core import setup
6
7 version = "0.0.1"
8
9 with open('README.rst') as f:
10 long_description = f.read()
11
12 setup(name='ofxstatement-sample',
13 version=version,
14 author="Andrey Lebedev",
15 author_email="andrey@lebedev.lt",
16 url="https://github.com/kedder/ofxstatement",
17 description=("Sample plugin for ofxstatement"),
18 long_description=long_description,
19 license="GPLv3",
20 keywords=["ofx", "banking", "statement"],
21 classifiers=[
22 'Development Status :: 3 - Alpha',
23 'Programming Language :: Python :: 3',
24 'Natural Language :: English',
25 'Topic :: Office/Business :: Financial :: Accounting',
26 'Topic :: Utilities',
27 'Environment :: Console',
28 'Operating System :: OS Independent',
29 'License :: OSI Approved :: GNU Affero General Public License v3'],
30 packages=find_packages('src'),
31 package_dir={'': 'src'},
32 namespace_packages=["ofxstatement", "ofxstatement.plugins"],
33 entry_points={
34 'ofxstatement':
35 ['sample = ofxstatement.plugins.sample:SamplePlugin']
36 },
37 install_requires=['ofxstatement'],
38 include_package_data=True,
39 zip_safe=True
40 )