-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
47 lines (40 loc) · 1.26 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
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements = [
'python-dateutil',
]
setup_requirements = [
]
test_requirements = [
'pytest',
]
entry_points = {
'console_scripts': [
'ledger-to-beancount = ledger_to_beancount.__main__:main',
]
}
setup(name='ledger-to-beancount',
version='0.0.1',
description='Another converter from ledger to beancount',
long_description=readme,
license='Apache License (2.0)',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'License :: OSI Approved :: Apache Software License',
],
keywords='beancount ledger accounting',
author='Ethan Glasser-Camp',
author_email='ethan@betacantrips.com',
url='https://github.com/glasserc/ledger-to-beancount/',
packages=find_packages(),
test_suite='tests',
install_requires=requirements,
tests_require=test_requirements,
setup_requires=setup_requirements,
entry_points=entry_points,
)