Move modules into sensible locations. Introduce method of compiling documentation with Sphinx.
10 lines
312 B
Python
10 lines
312 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',
|
|
packages=['librebudget', 'librebudget_core'])
|