doc: Updated README file and added new AUTHORS file

Change-Id: Id855c512225b88910f18b3dede8102502af8b6dd
diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 0000000..0fcb1f9
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,5 @@
+Jeff Thompson <jefft0@gmail.com>
+Alexander Afanasyev (http://lasr.cs.ucla.edu/afanasyev/index.html)
+Yingdi Yu (http://irl.cs.ucla.edu/~yingdi/)
+Wentao Shang (http://irl.cs.ucla.edu/~wentao/)
+Junxiao Shi (http://www.cs.arizona.edu/people/shijunxiao/)
diff --git a/README.md b/README.md
index b1b6ce5..c848f34 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,7 @@
-NDN-CPP:  A Named Data Networking client library for C++ and C
---------------------------------------------------------------
+NDN-CPP-dev:  A dev version of Named Data Networking client library for C++
+---------------------------------------------------------------------------
 
-NDN-CPP is a new implementation of a Named Data Networking client library written in C++ and C.  
-It is wire format compatible with NDNx and PARC's CCNx.
+NDN-CPP is a new implementation of a Named Data Networking client library written in C++.
 	
 NDN-CPP is open source under a license described in the file COPYING.  While the license
 does not require it, we really would appreciate it if others would share their
@@ -13,16 +12,4 @@
 Please submit any bugs or issues to the NDN-CPP issue tracker:
 http://redmine.named-data.net/projects/ndn-cpp/issues
 
----
-	
-The library currently requires a remote NDN daemon, and has been tested with ndnd, from
-the NDNx package: https://github.com/named-data/ndnx .
 
-Currently, the library has two APIs for developers: 
-
-	1. The C++ API which follows the NDN Common Client Library API also used by ndn-js (JavaScript)
-     and PyNDN (Python).
-
-	2. A core C library implementing lower-level encoding and communication.  Applications should normally
-     use the C++ API, but core C code will also function on embedded devices and other environments 
-     which don't have C++ support.