org-rw/setup.py

16 lines
405 B
Python

from setuptools import setup
setup(
name='org-dom',
version='0.0.1',
description=
'Library to de/serialize org-files and manipulate them in a DOM-like manner.',
author='kenkeiras',
author_email='kenkeiras@codigoparallevar.com',
license='Apache License 2.0',
packages=['org_dom'],
scripts=[],
include_package_data=False,
install_requires=[],
zip_safe=True)