| 12345678910111213141516 |
- from setuptools import setup, find_packages
- setup(
- name="drawio2py",
- version="1.0.0",
- install_requires=[
- # "jinja2",
- ],
- package_dir={"":"."},
- packages=["drawio2py"],
- # include_package_data=True,
- # package_data={"drawio2py": ["template.oml"]},
- )
|