-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
28 lines (23 loc) · 964 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
25
26
27
28
#!/usr/bin/env python3
from setuptools import setup
# read the contents of your README file
from os import path
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_interpolate',
version='2.5.0',
description='Plugins for Beancount to interpolate transactions',
long_description=long_description,
long_description_content_type='text/markdown',
author='Akuukis',
author_email='[email protected]',
download_url='https://pypi.python.org/pypi/beancount_interpolate',
license='GNU GPLv3',
package_data={'beancount_interpolate': ['../README.md']},
package_dir={'beancount_interpolate': 'beancount_interpolate'},
packages=['beancount_interpolate'],
install_requires=['beancount >= 2.0', 'beancount_plugin_utils >= 0.0.2'],
url='https://github.com/Akuukis/beancount_interpolate',
)