-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 720 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
DESCRIPTION = """Coroutine Data Access Patterns (mouthful I know) are some data
access patterns I found useful building web applications that use gevent or
evenlet. They mimic common Python data types like lists and dictionaries."""
setup(
name = 'codap',
version = '0.0.5',
author = 'Lateef Jackson',
author_email = 'lateef.jackson@gmail.com',
description = (DESCRIPTION),
license = 'BSD',
keywords = 'gevent eventlet coroutine ',
url = 'https://github.com/lateefj/codap',
packages=['codap', 'tests'],
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Utilities',
'License :: OSI Approved :: BSD License',
],
)