-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 1.06 KB
/
setup.py
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
import sys
from setuptools import setup
setup(
name = "renesy-helloworld", # what you want to call the archive/egg
version = "0.1.4",
packages=["helloworld"], # top-level python modules you can import like
# 'import foo'
dependency_links = [], # custom links to a specific project
install_requires=[],
extras_require={}, # optional features that other packages can require
# like 'helloworld[foo]'
package_data = {},
author="Robert Sprunk",
author_email = "renesy@users.noreply.github.com",
description = "An example program in Python with a multi-stage Docker build",
license = "GPLv3",
keywords= "example documentation tutorial",
url = "https://github.com/renesy/python-docker-multistage-helloworld",
entry_points = {
"console_scripts": [ # command-line executables to expose
"helloworld_in_python = helloworld.main:main",
],
"gui_scripts": [] # GUI executables (creates pyw on Windows)
}
)