|
2 | 2 | ################################################################################ |
3 | 3 | # |
4 | 4 | # sqlalchemy-pervasive -- SQLAlchemy Dialect for Pervasive PSQL |
5 | | -# Copyright © 2013-2018 Sacramento Natural Foods Co-op, Inc |
| 5 | +# Copyright © 2013-2021 Sacramento Natural Foods Co-op, Inc |
6 | 6 | # |
7 | 7 | # This file is part of sqlalchemy-pervasive. |
8 | 8 | # |
|
21 | 21 | # |
22 | 22 | ################################################################################ |
23 | 23 |
|
24 | | -from __future__ import unicode_literals, absolute_import |
25 | | - |
26 | 24 | import os.path |
27 | 25 | from setuptools import setup, find_packages |
28 | 26 |
|
|
79 | 77 | long_description = README + '\n\n' + CHANGES, |
80 | 78 |
|
81 | 79 | classifiers = [ |
82 | | - 'Development Status :: 3 - Alpha', |
| 80 | + 'Development Status :: 5 - Production/Stable', |
83 | 81 | 'Intended Audience :: Developers', |
84 | 82 | 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', |
85 | 83 | 'Natural Language :: English', |
86 | 84 | 'Operating System :: OS Independent', |
87 | 85 | 'Programming Language :: Python', |
88 | | - 'Programming Language :: Python :: 2.6', |
89 | | - 'Programming Language :: Python :: 2.7', |
| 86 | + 'Programming Language :: Python :: 3', |
90 | 87 | 'Topic :: Software Development :: Libraries :: Python Modules', |
91 | | - ], |
| 88 | + ], |
92 | 89 |
|
93 | 90 | install_requires = requires, |
94 | 91 | packages = find_packages(exclude=['tests']), |
|
0 commit comments