-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (32 loc) · 1.14 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='ToLedger',
version='2017.04.21',
description='Convert bank statements to Ledger',
long_description=readme(),
keywords=["ledger", "convert", "conversion", "bank", "ing", "nl",
"accounting", "command", "commandline", "cli", "bitstamp"],
packages=['toledger'],
scripts=['toledger/toledger.py'],
url='https://github.com/bartbroere/toledger/',
license='MIT',
author='Bart Broere',
author_email='mail@bartbroere.eu',
install_requires=['docopt'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Office/Business :: Financial',
'Topic :: Utilities',
],
)