2020-06-21 19:27:40 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
2020-12-20 11:39:47 +00:00
|
|
|
name="org-rw",
|
2024-02-21 22:00:59 +00:00
|
|
|
version="0.0.2",
|
2020-12-20 11:39:47 +00:00
|
|
|
description="Library to de/serialize org-files and manipulate them.",
|
2020-11-26 22:44:56 +00:00
|
|
|
author="kenkeiras",
|
|
|
|
author_email="kenkeiras@codigoparallevar.com",
|
|
|
|
license="Apache License 2.0",
|
2020-12-20 11:39:47 +00:00
|
|
|
packages=["org_rw"],
|
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,
|
|
|
|
)
|