summaryrefslogtreecommitdiff
path: root/setup.py
blob: ab687e78c6662c3732beb1c48b9b9c7bf64ffa27 (plain)
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
from setuptools import setup, find_packages

setup(name='ofxhome',
      version="0.3.3",
      description="ofxhome.com financial institution lookup REST client",
      long_description=open("./README", "r").read(),
      classifiers=[
          "Development Status :: 4 - Beta",
          "Intended Audience :: Developers",
          "Natural Language :: English",
          "Operating System :: OS Independent",
          "Programming Language :: Python",
          "Topic :: Software Development :: Libraries :: Python Modules",
          "Topic :: Utilities",
          "License :: OSI Approved :: MIT License",
          ],
      keywords='ofx, Open Financial Exchange, bank search, ofxhome, ofxhome.com',
      author='David Bartle',
      author_email='captindave@gmail.com',
      url='https://github.com/captin411/ofxhome',
      license='MIT License',
      packages=find_packages(exclude=['ez_setup', 'examples']),
      include_package_data=True,
      zip_safe=True,
      install_requires=[ ],
      test_suite = 'ofxhome.tests',
      entry_points="""
      """,
      )