File: setup.py

package info (click to toggle)
wheel 0.46.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 408 kB
  • sloc: python: 2,014; makefile: 141; sh: 23
file content (37 lines) | stat: -rw-r--r-- 852 bytes parent folder | download
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
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
# setup.py generated by flit for tools that don't yet use PEP 517

from distutils.core import setup

packages = \
['wheel', 'wheel._commands']

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

package_dir = \
{'': 'src'}

install_requires = \
['packaging >= 24.0']

extras_require = \
{'test': ['pytest >= 6.0.0', 'setuptools >= 77']}

entry_points = \
{'console_scripts': ['wheel = wheel._commands:main']}

setup(name='wheel',
      version='0.46.1',
      description='Command line tool for manipulating wheel files',
      author=None,
      author_email='Daniel Holth <dholth@fastmail.fm>',
      url=None,
      packages=packages,
      package_data=package_data,
      package_dir=package_dir,
      install_requires=install_requires,
      extras_require=extras_require,
      entry_points=entry_points,
      python_requires='>=3.9',
     )