org-rw/setup.py
Sergio Martínez Portela bb24f9495e Rename to org-rw.
2020-12-20 13:03:51 +01:00

16 lines
379 B
Python

from setuptools import setup
setup(
name="org-rw",
version="0.0.1",
description="Library to de/serialize org-files and manipulate them.",
author="kenkeiras",
author_email="kenkeiras@codigoparallevar.com",
license="Apache License 2.0",
packages=["org_rw"],
scripts=[],
include_package_data=False,
install_requires=[],
zip_safe=True,
)