setup file to build the egg

This commit is contained in:
Steve L. Nyemba -- The Architect 2018-10-31 13:31:28 -05:00
parent c0147d47bf
commit 45ad157882
1 changed files with 7 additions and 0 deletions

View File

@ -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()
)