import2ledger/setup.py

22 lines
584 B
Python
Raw Normal View History

#!/usr/bin/env python3
2017-10-22 18:31:38 +00:00
from setuptools import setup, find_packages
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'],
2017-10-22 18:31:38 +00:00
packages=find_packages(include=['import2ledger', 'import2ledger.*']),
entry_points={
'console_scripts': ['import2ledger = import2ledger.__main__:main'],
},
)