-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 915 Bytes
/
setup.py
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
#!/usr/bin/env python
from distutils.core import setup
setup (
name = 'constraints',
packages = ['constraints'],
version = '0.9.5',
description = 'Returns a constrained subset of the members of a dict of dicts',
author = 'James Polley',
author_email = 'jamezpolley@gmail.com',
url = 'https://github.com/jamezpolley/constraints',
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules'
],
requires = [
'PyYAML',
'testtools',
'testscenarios',
],
)