21 lines
477 B
Python
21 lines
477 B
Python
#!/usr/bin/env python
|
|
# setup.py generated by flit for tools that don't yet use PEP 517
|
|
|
|
from distutils.core import setup
|
|
|
|
packages = \
|
|
['tomli_w']
|
|
|
|
package_data = \
|
|
{'': ['*']}
|
|
|
|
setup(name='tomli_w',
|
|
version='%%PORTVERSION%%',
|
|
description="A lil' TOML writer",
|
|
author=None,
|
|
author_email='Taneli Hukkinen <hukkin@users.noreply.github.com>',
|
|
url=None,
|
|
packages=packages,
|
|
package_data=package_data,
|
|
python_requires='>=3.7',
|
|
)
|