-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (23 loc) · 949 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_allocate',
version='0.1.4',
description='Plugin for Beancount to collaborate within one ledger.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Akuukis',
author_email='[email protected]',
download_url='https://pypi.python.org/pypi/beancount_allocate',
license='GNU AGPLv3',
package_data={'beancount_allocate': ['../README.md']},
package_dir={'beancount_allocate': 'beancount_allocate'},
packages=['beancount_allocate'],
install_requires=['beancount >= 2.0', 'beancount_plugin_utils >= 0.0.4'],
url='https://github.com/Akuukis/beancount_allocate',
)