@caselit is fixing this but i just need the build
to pass for the moment
Change-Id: I1c39304c5541ac6f09a80fc157f86f1c86421235
3. The entry point can be established in setup.py as follows::
entry_points = """
- [sqlalchemy.dialects]
- foodialect = foodialect.dialect:FooDialect
- """
+ [sqlalchemy.dialects]
+ foodialect = foodialect.dialect:FooDialect
+ """
If the dialect is providing support for a particular DBAPI on top of
an existing SQLAlchemy-supported database, the name can be given
were in fact a MySQL dialect, the entry point could be established like this::
entry_points = """
- [sqlalchemy.dialects]
- mysql.foodialect = foodialect.dialect:FooDialect
- """
+ [sqlalchemy.dialects]
+ mysql.foodialect = foodialect.dialect:FooDialect
+ """
The above entrypoint would then be accessed as ``create_engine("mysql+foodialect://")``.