Commit 2a35572503215f0180a87cdd50f3e8ca5e051c8e
1 parent
7327dd95
Exists in
master
Small fixes on icons and rename of files to markdown
Showing
7 changed files
with
22 additions
and
22 deletions
Show diff stats
CHANGES.txt
@@ -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 | - |
@@ -0,0 +1 @@ | @@ -0,0 +1 @@ | ||
1 | +Aumentar as classes que faltarem no json_base conforme as coletas acontecem |
TODO.txt
@@ -1 +0,0 @@ | @@ -1 +0,0 @@ | ||
1 | -Aumentar as classes que faltarem no json_base conforme as coletas acontecem |
setup.py
@@ -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='WSCServer', | @@ -47,4 +47,4 @@ setup(name='WSCServer', | ||
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 | + ) |