org-rw/setup.py

16 lines
402 B
Python
Raw Normal View History

2020-06-21 19:27:40 +00:00
from setuptools import setup
setup(
2020-11-26 22:44:56 +00:00
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"],
2020-06-21 19:27:40 +00:00
scripts=[],
include_package_data=False,
install_requires=[],
2020-11-26 22:44:56 +00:00
zip_safe=True,
)