org-rw/setup.py

16 lines
384 B
Python
Raw Normal View History

2020-06-21 19:27:40 +00:00
from setuptools import setup
setup(
2020-12-20 11:39:47 +00:00
name="org-rw",
2021-08-03 21:04:36 +00:00
version="0.0.1.dev1",
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,
)