Ticket #324 (assigned task)

Opened 2 months ago

Last modified 8 weeks ago

Update 'extras_require' dependencies

Reported by: thijs Owned by: mvtellingen
Priority: major Milestone: 0.4
Component: Installer Version: 0.3.1
Keywords: adapter Cc: mvtellingen

Description (last modified by thijs) (diff)

The Google App Engine adapter, and the possible upcoming SQLAlchemy adapter, should be added to pyamf/trunk/setup.py:

extras_require={
        'wsgi': ['wsgiref'],
        'twisted': ['Twisted>=2.5.0'],
        'django': ['Django>=0.96'],
        'google': ['GoogleAppEngine>=1.0'],
        'sqlalchemy': ['SQLAlchemy>=0.4']
},

Change History

  Changed 2 months ago by thijs

  • description modified (diff)

  Changed 2 months ago by nick

  • status changed from new to accepted

Google App Engine isn't part of the setuptools/distutils/pypi distribution so shouldn't be included in the list

  Changed 8 weeks ago by thijs

Ticket blocked by #277 (SQLAlchemy Adapter)

  Changed 8 weeks ago by thijs

  • cc mvtellingen added
  • owner changed from nick to mvtellingen
  • status changed from accepted to assigned

follow-up: ↓ 6   Changed 8 weeks ago by mvtellingen

most likely you only want to load the sqlalchemy adapter if sqlalchemy is installed, thus not making it a requirement ?

in reply to: ↑ 5   Changed 8 weeks ago by thijs

Replying to mvtellingen:

most likely you only want to load the sqlalchemy adapter if sqlalchemy is installed, thus not making it a requirement ?

True, that's why it's a 'extras' requirement, which isn't used for anything (yet), it's more an indication that our library supports those third-party libraries like Twisted, Django etc.

Note: See TracTickets for help on using tickets.