org-rw/setup.py
Sergio Martínez Portela 7cf643200e Upload version to PyPI.
2021-08-03 23:04:36 +02:00

16 lines
384 B
Python

from setuptools import setup
setup(
name="org-rw",
version="0.0.1.dev1",
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,
)