-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (21 loc) · 810 Bytes
/
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
#!/usr/bin/env python3
from os import path
from setuptools import setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="beancount_oneliner",
version="1.2.0",
description="Plugin for Beancount to write oneliner transaction entries.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Kalvis 'Akuukis' Kalnins",
author_email="[email protected]",
license="GPLv3",
package_data={"beancount_oneliner": ["README.md"]},
package_dir={"beancount_oneliner": "beancount_oneliner"},
packages=["beancount_oneliner"],
requires=["beancount (>2.0)"],
url="https://github.com/Akuukis/beancount_oneliner",
)