Added PythonPackageAnalyzer, for directly analyzing Python library, a.k.a.,

package, source code.


Former-commit-id: 3154ea4ecddd794cb3e7f3686972fd7a6cc2177c
This commit is contained in:
Dale Visser
2015-04-02 19:31:34 -04:00
parent bf96c24ec3
commit 511d2b9457
13 changed files with 439 additions and 43 deletions

View File

@@ -0,0 +1,9 @@
__all__ = ["__title__", "__summary__", "__uri__", "__version__", "__author__",
"__email__" ]
__title__ = "EggTest"
__summary__ = "Simple project for producing an .egg."
__uri__ = "http://example.org/eggtest"
__version__ = "0.0.1"
__author__ = "Dale Visser"
__email__ = "dvisser@ida.org"

View File

@@ -1,9 +1,11 @@
from setuptools import setup
setup(name = 'EggTest',
about = {}
execfile('eggtest/__about__.py', about)
setup(name = about['__title__'],
packages = ['eggtest'],
version = '0.0.1',
description = 'Simple project for producing an .egg.',
url = 'http://example.org/eggtest',
author = 'Dale Visser',
author_email = 'dvisser@ida.org')
version = about['__version__'],
description = about['__summary__'],
url = about['__uri__'],
author = about['__author__'],
author_email = about['__email__'])

View File

@@ -3,5 +3,6 @@ EggTest.egg-info/PKG-INFO
EggTest.egg-info/SOURCES.txt
EggTest.egg-info/dependency_links.txt
EggTest.egg-info/top_level.txt
eggtest/__about__.py
eggtest/__init__.py
eggtest/main.py

View File

@@ -0,0 +1,9 @@
__all__ = ["__title__", "__summary__", "__uri__", "__version__", "__author__",
"__email__" ]
__title__ = "EggTest"
__summary__ = "Simple project for producing an .egg."
__uri__ = "http://example.org/eggtest"
__version__ = "0.0.1"
__author__ = "Dale Visser"
__email__ = "dvisser@ida.org"