소스 검색

setup file to build the egg

Steve L. Nyemba -- The Architect 6 년 전
부모
커밋
45ad157882
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      src/setup.py

+ 7 - 0
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()
     )