1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
#!/usr/bin/env python
# Copyright 2012-2014 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""Distutils installer for postgresfixture."""
from __future__ import (
absolute_import,
print_function,
)
__metaclass__ = type
import codecs
from setuptools import (
find_packages,
setup,
)
with codecs.open("requirements.txt", "rb", encoding="utf-8") as fd:
requirements = [line.strip() for line in fd]
with open("README.txt") as readme:
long_description = readme.read()
setup(
name='postgresfixture',
version="0.5.0",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development :: Libraries',
],
packages=find_packages(),
install_requires=requirements,
tests_require=("testtools >= 0.9.14",),
test_suite="postgresfixture.tests",
include_package_data=True,
zip_safe=False,
description=(
"A fixture for creating PostgreSQL clusters and databases, and "
"tearing them down again, intended for use during development "
"and testing."),
long_description=long_description,
long_description_content_type="text/x-rst",
entry_points={
"console_scripts": [
"postgresfixture = postgresfixture.main:main",
],
},
)
|