Migrate to pbr

Release / build automation good.
This commit is contained in:
Robert Collins 2015-12-04 14:36:56 +13:00
parent ef938bcce0
commit e9fecfc450
12 changed files with 26 additions and 30 deletions

View File

@ -5,3 +5,4 @@ lib/testtools
__pycache__
./dist
./MANIFEST
*~

View File

@ -1,3 +0,0 @@
include doc/*.py
include MANIFEST.in
include NEWS

23
setup.cfg Normal file
View File

@ -0,0 +1,23 @@
[metadata]
name = testresources
author = Robert Collins
author_email = robertc@robertcollins.net
author = Testresources developers
author_email = https://launchpad.net/~testresources-developers
home-page = https://launchpad.net/testresources
summary = Testresources, a pyunit extension for managing expensive test resources
description-file = README
keyword = unittest, testing, fixtures
classifiers =
Development Status :: 6 - Mature
Intended Audience :: Developers
License :: OSI Approved :: BSD License
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing
[files]
scripts =

View File

@ -1,30 +1,5 @@
#!/usr/bin/env python
from setuptools import setup
import os.path
import setuptools
description = open(os.path.join(os.path.dirname(__file__), 'README'), 'rt').read()
setup(name="testresources",
version="0.2.7",
description="Testresources, a pyunit extension for managing expensive "
"test resources",
long_description=description,
maintainer="Testresources developers",
maintainer_email="https://launchpad.net/~testresources-developers",
url="https://launchpad.net/testresources",
packages=['testresources', 'testresources.tests'],
package_dir = {'':'lib'},
keywords="unittest testing fixtures",
classifiers = [
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
],
)
setuptools.setup(setup_requires=['pbr>=1.3'], pbr=True)