-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 743 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (21 loc) · 743 Bytes
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
#!/usr/bin/env python
import os.path
import setuptools
with open('requirements.txt') as f:
required_packages = f.read().splitlines()
setuptools.setup(
name='beancount-mercury',
long_description=open(
os.path.join(os.path.abspath(os.path.dirname(__file__)),
'README.md')).read(),
long_description_content_type="text/markdown",
version='0.1.4',
description='Import Mercury banking transactions into beancount format',
author='Michael Lynch',
license="MIT",
keywords="mercury beancount bookkeeping finance",
url='https://github.com/mtlynch/beancount-mercury.git',
packages=['beancount_mercury'],
install_requires=[required_packages],
python_requires='>=3.9',
)