import2ledger/setup.py
Brett Smith 5c73c40bcc import2ledger: First version.
This is a pretty feature-complete version 1.
I don't know why I waited this long to commit anything.
2017-10-22 13:40:20 -04:00

19 lines
446 B
Python
Executable file

#!/usr/bin/env python3
from setuptools import setup
setup(
name='import2ledger',
description="Import different sources of financial data to Ledger",
version='0.1',
author='Brett Smith',
author_email='brettcsmith@brettcsmith.org',
license='GNU AGPLv3+',
install_requires=['babel'],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'PyYAML'],
packages=['import2ledger'],
entry_points={},
)