Skip to content

Commit

Permalink
Documentation introduction and setup.py modified
Browse files Browse the repository at this point in the history
  • Loading branch information
al-indigo committed Aug 9, 2014
1 parent f7c9826 commit 1fb6f7b
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 21 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include *.txt *.ini *.cfg *.rst
include *.txt *.md *.ini *.cfg *.rst
recursive-include lingvodoc *.ico *.png *.css *.gif *.jpg *.pt *.txt *.mak *.mako *.js *.html *.xml
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
LingvoDoc project
==================

This project is dedicated to natural languages and dialects documentation. It's the continuation of Dialeqt project
(which was written in C++/QT5/Pure SQL).
LingvoDoc is intended to provide natural language documentation service as Web-service and provides REST API and
ajax-based client application.


Dependancies
---------------

- pyramid (framework)

- sqlalchemy (ORM)


Running the project for development
---------------

- Create virtual python environment for Python (3.3+ recommended; 2.7+ should work too but is not tested)

- Declare env variable for your virtual environment: export VENV=<path to your virtual environment>

- cd <directory containing this file>

- $VENV/bin/python setup.py develop

- $VENV/bin/initialize_lingvodoc_db development.ini

- $VENV/bin/pserve development.ini

API documentation
---------------
14 changes: 0 additions & 14 deletions README.txt

This file was deleted.

12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
from setuptools import setup, find_packages

here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.txt')) as f:
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
with open(os.path.join(here, 'CHANGES.md')) as f:
CHANGES = f.read()

requires = [
Expand All @@ -29,10 +29,10 @@
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='',
author_email='',
url='',
keywords='web wsgi bfg pylons pyramid',
author='Oleg Borisenko',
author_email='[email protected]',
url='https://lingvodoc.ispras.ru/',
keywords='web wsgi bfg pylons pyramid sqlalchemy',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
Expand Down

0 comments on commit 1fb6f7b

Please sign in to comment.