org-rw/setup.py
Sergio Martínez Portela a56ac018a8
Some checks failed
Testing / pytest (push) Successful in 25s
Testing / mypy (push) Failing after 30s
Testing / stability-extra-test (push) Successful in 22s
Prepare for PyPI pushising, bumb version.
2024-07-19 20:01:27 +02:00

16 lines
379 B
Python

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