~canonical-launchpad-branches/lazr-postgresql/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Stuart Bishop
  • Date: 2018-04-19 15:37:15 UTC
  • Revision ID: stuart@stuartbishop.net-20180419153715-t7u9ph2h1c70cgmp
Remove hard dependency on psycopg2

This is to keep build systems happier, allowing use of psycopg2-binary
or deb package at runtime. In particular, 'charm build' bundling of
dependencies in a wheelhouse.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
    os.path.dirname(__file__), 'README.rst'), 'rb').read().decode('UTF-8')
21
21
 
22
22
setup(name="lazr.postgresql",
23
 
      version="0.0.3",
 
23
      version="0.0.4",
24
24
      description="LAZR postgresql specific support code.",
25
25
      long_description=description,
26
26
      maintainer="Launchpad Developers",
38
38
          'Programming Language :: Python :: 3',
39
39
          ],
40
40
      install_requires=[
41
 
          'psycopg2',
 
41
          # Deliberately left out to allow use of psycopg2-binary
 
42
          # 'psycopg2',
42
43
          ],
43
44
      extras_require=dict(
44
45
          test=[