File: setup.py

package info (click to toggle)
click-man 0.4.2-0.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 724 kB
  • sloc: python: 358; makefile: 18; sh: 4
file content (10 lines) | stat: -rw-r--r-- 222 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
from setuptools import setup, find_packages


setup(
    name='repo',
    version='0.1.0',
    install_requires=['click'],
    packages=find_packages(),
    entry_points={'console_scripts': ['repo = repo.__main__:cli']}
)