aboutsummaryrefslogtreecommitdiff
path: root/devel/py-packaging/files/setup.py
blob: b88c05816f09a73a0e18130ac5e1f715ed05d3ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python
# setup.py generated by flit for tools that don't yet use PEP 517

from distutils.core import setup

packages = \
['packaging']

package_data = \
{'': ['*']}

package_dir = \
{'': 'src'}

setup(name='packaging',
      version='%%PORTVERSION%%',
      description='Core utilities for Python packages',
      author=None,
      author_email='Donald Stufft <donald@stufft.io>',
      url=None,
      packages=packages,
      package_data=package_data,
      package_dir=package_dir,
      python_requires='>=3.7',
     )