|
1 | | -#!/usr/bin/env python |
2 | | -# -*- coding: utf-8 -*- |
| 1 | +# -*- coding: utf-8; -*- |
3 | 2 | ################################################################################ |
4 | 3 | # |
5 | 4 | # sqlalchemy-pervasive -- SQLAlchemy Dialect for Pervasive PSQL |
6 | | -# Copyright © 2013 Sacramento Natural Foods Co-op, Inc |
| 5 | +# Copyright © 2013-2021 Sacramento Natural Foods Co-op, Inc |
7 | 6 | # |
8 | 7 | # This file is part of sqlalchemy-pervasive. |
9 | 8 | # |
|
22 | 21 | # |
23 | 22 | ################################################################################ |
24 | 23 |
|
25 | | - |
26 | 24 | import os.path |
27 | 25 | from setuptools import setup, find_packages |
28 | 26 |
|
29 | 27 |
|
30 | 28 | here = os.path.abspath(os.path.dirname(__file__)) |
| 29 | +<<<<<<< HEAD |
31 | 30 | exec(compile(open(os.path.join(here, 'sqlalchemy_pervasive', '_version.py')).read(), os.path.join(here, 'sqlalchemy_pervasive', '_version.py'), 'exec')) |
| 31 | +======= |
| 32 | +exec(open(os.path.join(here, 'sqlalchemy_pervasive', '_version.py')).read()) |
| 33 | +>>>>>>> 3c1928b5b5693898f30e8b6e0ae4e6f57a5bf941 |
32 | 34 |
|
33 | 35 | README = open(os.path.join(here, 'README.rst')).read() |
34 | 36 | CHANGES = open(os.path.join(here, 'CHANGES.rst')).read() |
|
71 | 73 | setup( |
72 | 74 | name = "sqlalchemy-pervasive", |
73 | 75 | version = __version__, |
74 | | - author = "Sacramento Natural Foods Co-op, Inc", |
75 | | - author_email = "developer@sacfoodcoop.com", |
76 | | - url = 'https://github.com/SacNaturalFoods/sqlalchemy-pervasive', |
| 76 | + author = "Lance Edgar", |
| 77 | + author_email = "lance@edbob.org", |
| 78 | + url = 'https://kallithea.rattailproject.org/rattail-project-contrib/sqlalchemy-pervasive', |
77 | 79 | license = "GNU GPL v3", |
78 | 80 | description = "SQLAlchemy Dialect for Pervasive PSQL", |
79 | 81 | long_description = README + '\n\n' + CHANGES, |
80 | 82 |
|
81 | 83 | classifiers = [ |
82 | | - 'Development Status :: 3 - Alpha', |
| 84 | + 'Development Status :: 5 - Production/Stable', |
83 | 85 | 'Intended Audience :: Developers', |
84 | 86 | 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', |
85 | 87 | 'Natural Language :: English', |
86 | 88 | 'Operating System :: OS Independent', |
87 | 89 | 'Programming Language :: Python', |
88 | 90 | 'Programming Language :: Python :: 3', |
89 | 91 | 'Topic :: Software Development :: Libraries :: Python Modules', |
90 | | - ], |
| 92 | + ], |
91 | 93 |
|
92 | 94 | install_requires = requires, |
93 | 95 | packages = find_packages(exclude=['tests']), |
|
0 commit comments