mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-13 05:35:36 +01:00
Added PythonPackageAnalyzer, for directly analyzing Python library, a.k.a.,
package, source code. Former-commit-id: 3154ea4ecddd794cb3e7f3686972fd7a6cc2177c
This commit is contained in:
Binary file not shown.
@@ -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"
|
||||
@@ -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__'])
|
||||
@@ -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
|
||||
@@ -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"
|
||||
Binary file not shown.
Reference in New Issue
Block a user