org-rw/setup.py
2020-11-26 23:44:56 +01:00

16 lines
402 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,
)