File: setup.py

package info (click to toggle)
python-ofxhome 0.3.3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 144 kB
  • sloc: python: 212; xml: 55; makefile: 3
file content (29 lines) | stat: -rw-r--r-- 1,087 bytes parent folder | download | duplicates (3)
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="""
      """,
      )