Skip to content

Commit

Permalink
fix for setup.py import issue, increment to v2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ivotkv committed May 13, 2016
1 parent b67627c commit 782cbf1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions neolixir/__init__.py
Expand Up @@ -30,9 +30,7 @@
from relationship import *
import relationship as __m_relationship__

__name__ = 'neolixir'
__package__ = 'neolixir'
__version__ = '2.1.0'
__version__ = '2.1.1'

__all__ = [n for m in dir() if re.match('^__m_.*', m) for n in eval(m).__all__]

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -17,10 +17,10 @@
except ImportError:
from distutils.core import setup

from neolixir import __name__, __package__, __version__
__version__ = '2.1.1'

setup(
name=__name__,
name='neolixir',
version=__version__,
description='A declarative ORM abstraction layer for Neo4j',
long_description='A declarative ORM abstraction layer for the Neo4j graph database. '
Expand Down Expand Up @@ -48,7 +48,7 @@
"neo4j", "declarative", "orm", "polymorphic", "schema", "session"
],
packages=[
__package__
'neolixir'
],
install_requires=[
'py2neo>=2.0,<2.1',
Expand Down

0 comments on commit 782cbf1

Please sign in to comment.