Commit 2a35572503215f0180a87cdd50f3e8ca5e051c8e

Authored by rickinbsb
1 parent 7327dd95
Exists in master

Small fixes on icons and rename of files to markdown

CHANGES.md 0 → 100644
@@ -0,0 +1,4 @@ @@ -0,0 +1,4 @@
  1 +0.0
  2 +---
  3 +
  4 +- Initial version
CHANGES.txt
@@ -1,4 +0,0 @@ @@ -1,4 +0,0 @@
1 -0.0  
2 ----  
3 -  
4 -- Initial version  
README.md 0 → 100644
@@ -0,0 +1,14 @@ @@ -0,0 +1,14 @@
  1 +WSCServer README
  2 +==================
  3 +
  4 +Getting Started
  5 +---------------
  6 +
  7 +- cd <directory containing this file>
  8 +
  9 +- $venv/bin/python setup.py develop
  10 +
  11 +- $venv/bin/initialize_WSCServer_db development.ini
  12 +
  13 +- $venv/bin/pserve development.ini
  14 +
README.txt
@@ -1,14 +0,0 @@ @@ -1,14 +0,0 @@
1 -WSCServer README  
2 -==================  
3 -  
4 -Getting Started  
5 ----------------  
6 -  
7 -- cd <directory containing this file>  
8 -  
9 -- $venv/bin/python setup.py develop  
10 -  
11 -- $venv/bin/initialize_WSCServer_db development.ini  
12 -  
13 -- $venv/bin/pserve development.ini  
14 -  
TODO.md 0 → 100644
@@ -0,0 +1 @@ @@ -0,0 +1 @@
  1 +Aumentar as classes que faltarem no json_base conforme as coletas acontecem
@@ -1 +0,0 @@ @@ -1 +0,0 @@
1 -Aumentar as classes que faltarem no json_base conforme as coletas acontecem  
@@ -3,8 +3,8 @@ import os @@ -3,8 +3,8 @@ import os
3 from setuptools import setup, find_packages 3 from setuptools import setup, find_packages
4 4
5 here = os.path.abspath(os.path.dirname(__file__)) 5 here = os.path.abspath(os.path.dirname(__file__))
6 -README = open(os.path.join(here, 'README.txt')).read()  
7 -CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() 6 +README = open(os.path.join(here, 'README.md')).read()
  7 +CHANGES = open(os.path.join(here, 'CHANGES.md')).read()
8 8
9 requires = [ 9 requires = [
10 'pyramid', 10 'pyramid',
@@ -47,4 +47,4 @@ setup(name=&#39;WSCServer&#39;, @@ -47,4 +47,4 @@ setup(name=&#39;WSCServer&#39;,
47 [console_scripts] 47 [console_scripts]
48 initialize_WSCServer_db = wscserver.scripts.initializedb:main 48 initialize_WSCServer_db = wscserver.scripts.initializedb:main
49 """ 49 """
50 - )  
51 \ No newline at end of file 50 \ No newline at end of file
  51 + )