forked from csingley/ibflex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (52 loc) · 1.93 KB
/
setup.py
File metadata and controls
64 lines (52 loc) · 1.93 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
import os.path
from setuptools import setup, find_packages
# Get the long description from the relevant file
__here__ = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(__here__, 'README.rst'), 'r') as f:
long_description = f.read()
version = '0.11'
setup(
name='ibflex',
version=version,
download_url='https://github.com/csingley/ibflex/tarball/master',
# download_url='https://github.com/csingley/ibflex/releases/tag/' + version,
description=('Parse Interactive Brokers Flex XML reports and convert '
'to Python data types'),
long_description=long_description,
url='https://github.com/csingley/ibflex',
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 :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords=['Interactive Brokers', 'ibkr', 'flex', 'xml'],
packages=find_packages(),
package_data={
'ibflex': ['README.rst', 'tests/*'],
},
extras_require={
'web': ['requests'],
},
entry_points={
'console_scripts': [
'flexget=ibflex.client:main [web]',
],
},
)