14 lines
266 B
Python
14 lines
266 B
Python
# setup.py
|
|
|
|
import setuptools
|
|
|
|
setuptools.setup(
|
|
name="porty",
|
|
version="0.0.1",
|
|
author="Your Name",
|
|
author_email="you@example.com",
|
|
description="Practical Python Code",
|
|
packages=setuptools.find_packages(),
|
|
scripts=['print-report.py'],
|
|
)
|