forked from csingley/capgains
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (53 loc) · 1.96 KB
/
setup.py
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
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.rst'), 'r') as f:
long_description = f.read()
setup(
name='capgains',
version='0.0.1dev',
# Note: change 'master' to the tag name when release a new verison
download_url='https://github.com/csingley/capgains/tarball/master',
description='Calculate capital gains from investment transactions',
long_description=long_description,
url='https://github.com/csingley/capgains',
author='Christopher Singley',
author_email='[email protected]',
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=['tax', 'investment', 'ofx', 'Open Financial Exchange'],
packages=find_packages(),
install_requires=[
'ofxtools >= 0.8.20',
'sqlalchemy >= 1.0.0',
'alembic >= 1.0.0',
'ibflex',
],
package_data={
'capgains': ['README.rst', 'tests/*'],
},
#entry_points = {
#'console_scripts': [
#'capgains=capgains.models:main',
#],
#},
)