File: setup.py

package info (click to toggle)
python-argcomplete 3.6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 704 kB
  • sloc: python: 2,814; makefile: 50; sh: 7
file content (14 lines) | stat: -rw-r--r-- 299 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from setuptools import setup

setup(
    name="test-package",
    version="0",
    py_modules=["test_module"],
    packages=["test_package"],
    entry_points={
        "console_scripts": [
            "test-module=test_module:main",
            "test-package=test_package:main",
        ]
    },
)