-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
32 lines (28 loc) · 1.02 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
from setuptools import setup
from setuptools import find_packages
VERSION = '0.1.2'
with open('README.md', 'r', encoding='UTF-8') as f:
LONG_DESCRIPTION = f.read()
with open('requirements.txt', 'r') as f:
REQUIREMENTS = list(filter(None, f.read().split('\n')))
setup(
name='beancount-periodic',
version=VERSION,
url='https://github.com/dallaslu/beancount-periodic',
project_urls={
"Issue tracker": "https://github.com/dallaslu/beancount-periodic/issues",
},
author='Dallas Lu',
author_email='[email protected]',
description='Beancount plugin to generate periodic transactions #Amortize #Depreciate #Recur',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=REQUIREMENTS,
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Office/Business :: Financial :: Accounting',
],
python_requires='>=3.6',
)