From 45ad157882fbea3e9ce53dc71a8424f1306555d0 Mon Sep 17 00:00:00 2001 From: "Steve L. Nyemba -- The Architect" Date: Wed, 31 Oct 2018 13:31:28 -0500 Subject: [PATCH] setup file to build the egg --- src/setup.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/setup.py b/src/setup.py index 629b1d9..26b7513 100644 --- a/src/setup.py +++ b/src/setup.py @@ -3,5 +3,12 @@ from setuptools import setup, find_packages setup( name = "deid", version = "0.1", + author = "Steve L. Nyemba", + author_email = "steve@the-phi.com", + description = ("An demonstration of how to create, document, and publish " + "to the cheese shop a5 pypi.org."), + license = "BSD", + keywords = "example documentation tutorial", + url = "http://packages.python.org/an_example_pypi_project", packages = find_packages() )