forked from csingley/ofxtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
68 lines (55 loc) · 2.16 KB
/
setup.py
File metadata and controls
68 lines (55 loc) · 2.16 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from setuptools import setup, find_packages
import os.path
# Get the long description from the relevant file
__here__ = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(__here__, 'README.md'), 'r') as f:
long_description = f.read()
setup(
name = 'ofxtools',
version = '0.3.13',
# Note: change 'master' to the tag name when release a new verion
download_url = 'https://github.com/csingley/ofxtools/tarball/master',
description = ('Library for working with Open Financial Exchange (OFX) '
'formatted data used by financial institutions'),
long_description = long_description,
url = 'https://github.com/csingley/ofxtools',
author = 'Christopher Singley',
author_email = 'csingley@gmail.com',
license = 'MIT',
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Topic :: Office/Business',
'Topic :: Office/Business :: Financial',
'Topic :: Office/Business :: Financial :: Accounting',
'Topic :: Office/Business :: Financial :: Investment',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords = ['ofx', 'Open Financial Exchange'],
packages = find_packages(),
extras_require = {
'SQL': ['sqlalchemy > 1.0.0',],
},
package_data = {
'ofxtools': ['README.md', 'config/*.cfg', 'tests/*'],
},
entry_points = {
'console_scripts': [
'ofxget=ofxtools.Client:main',
],
},
)