18 lines
495 B
Python
18 lines
495 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='librebudget',
|
|
version='0.1',
|
|
description='Free personal finance tool',
|
|
author='Ian Adam Naval',
|
|
author_email='ianonavy@gmail.com',
|
|
url='https://git.ianonavy.com/ianonavy/librebudget',
|
|
install_requires=[
|
|
"django==1.8.1",
|
|
"selenium==2.45.0",
|
|
"beautifulsoup4==4.3.2",
|
|
"django-dotenv==1.3.0",
|
|
"django-registration-redux==1.2",
|
|
],
|
|
packages=['librebudget', 'librebudget_core'])
|