File tree 5 files changed +14
-8
lines changed
5 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 1
- env
2
- env2
1
+ __pycache__
2
+ build
3
3
dist
4
4
distribute- *
5
5
docs /_build
6
+ env
7
+ env2
6
8
* .egg-info
9
+ .python-version
Original file line number Diff line number Diff line change 1
1
postgres is a high-value abstraction over psycopg2
2
2
3
- https://postgres-py.readthedocs.org/
3
+ [ Read the Docs ] ( https://postgres-py.readthedocs.org )
Original file line number Diff line number Diff line change 50
50
# The short X.Y version.
51
51
version = '2.2'
52
52
# The full version, including alpha/beta/rc tags.
53
- release = '2.2.1-dev '
53
+ release = '2.2.2 '
54
54
55
55
# The language for content autogenerated by Sphinx. Refer to documentation
56
56
# for a list of supported languages.
Original file line number Diff line number Diff line change 189
189
from psycopg2 .pool import ThreadedConnectionPool as ConnectionPool
190
190
191
191
192
- __version__ = '2.2.1-dev '
192
+ __version__ = '2.2.2 '
193
193
194
194
195
195
# A Helper
Original file line number Diff line number Diff line change 4
4
5
5
setup ( name = 'postgres'
6
6
, author = 'Gratipay, LLC'
7
+ ,
author_email = '[email protected] '
7
8
, description = "postgres is a high-value abstraction over psycopg2."
9
+ , long_description = open ('README.md' ).read ()
10
+ , long_description_content_type = 'text/markdown'
8
11
, url = 'https://postgres-py.readthedocs.org'
9
- , version = '2.2.1-dev '
12
+ , version = '2.2.2 '
10
13
, packages = find_packages ()
11
14
, install_requires = ['psycopg2-binary >= 2.7.5' ]
12
15
, classifiers = [
23
26
'Programming Language :: SQL' ,
24
27
'Topic :: Database :: Front-Ends' ,
25
28
'Topic :: Software Development :: Libraries :: Python Modules' ,
26
- ],
27
- )
29
+ ]
30
+ )
You can’t perform that action at this time.
0 commit comments