forked from Lainports/opnsense-ports
25 lines
570 B
Python
25 lines
570 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 = \
|
|
['installer', 'installer._scripts']
|
|
|
|
package_data = \
|
|
{'': ['*']}
|
|
|
|
package_dir = \
|
|
{'': 'src'}
|
|
|
|
setup(name='installer',
|
|
version='%%PORTVERSION%%',
|
|
description='A library for installing Python wheels.',
|
|
author=None,
|
|
author_email='Pradyun Gedam <pradyunsg@gmail.com>',
|
|
url=None,
|
|
packages=packages,
|
|
package_data=package_data,
|
|
package_dir=package_dir,
|
|
python_requires='>=3.7',
|
|
)
|