Skip to content

Commit

Permalink
Updated with new mcl package instead of eke
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliujpl committed Apr 24, 2016
1 parent e5bc87c commit 406230b
Show file tree
Hide file tree
Showing 41 changed files with 18 additions and 7 deletions.
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
recursive-include edrn *.zcml *.pt *.txt *.xml *.tsv
recursive-include docs *.txt
recursive-include jpl/mcl/protocol *
include NOTICE.txt *.rst
File renamed without changes.
11 changes: 11 additions & 0 deletions jpl/mcl/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# encoding: utf-8
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
# Copyright 2009 California Institute of Technology. ALL RIGHTS
# RESERVED. U.S. Government Sponsorship acknowledged.
#
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 0 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
[zopeskel]
template = jpl.plone_content

[egg_info]
tag_build = dev
tag_svn_revision = true

[source-dependencies]
eggs =
eke.knowledge
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
# ------------

_name = 'jpl.mcl.protocol'
_version = '0.0.1'
_version = '0.0.2'
_description = 'Study and protocol information for the MCL'
_author = 'Sean Kelly'
_authorEmail = 'sean.kelly@jpl.nasa.gov'
_license = 'ALv2'
_namespaces = ['eke']
_namespaces = ['jpl.mcl']
_zipSafe = False
_keywords = 'web zope plone edrn cancer biomarkers jpl.mcl.protocol protocol'
_entryPoints = {
Expand Down Expand Up @@ -78,7 +78,7 @@ def _read(*rnames):
name=_name,
namespace_packages=_namespaces,
packages=find_packages(exclude=['ez_setup']),
url='https://github.com/EDRN/' + _name,
url='https://github.com/MCLConsortium/' + _name,
version=_version,
zip_safe=_zipSafe,
)

0 comments on commit 406230b

Please sign in to comment.