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
|
#!/usr/bin/env python
from distutils.core import setup
import os.path
description = file(os.path.join(os.path.dirname(__file__), 'README'), 'rb').read()
setup(name="fixtures",
version="0.3.5",
description="Fixtures, reusable state for writing clean tests and more.",
long_description=description,
maintainer="Robert Collins",
maintainer_email="robertc@robertcollins.net",
url="https://launchpad.net/python-fixtures",
packages=['fixtures', 'fixtures._fixtures', 'fixtures.tests',
'fixtures.tests._fixtures'],
package_dir = {'':'lib'},
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',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
],
)
|