Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# http://editorconfig.org

root = true

[*]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8
end_of_line = lf

[*.bat]
indent_style = tab
end_of_line = crlf

[LICENSE]
insert_final_newline = false

[Makefile]
indent_style = tab
# http://editorconfig.org
root = true
[*]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8
end_of_line = lf
[*.bat]
indent_style = tab
end_of_line = crlf
[LICENSE]
insert_final_newline = false
[Makefile]
indent_style = tab
30 changes: 15 additions & 15 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
* prakriya version:
* Python version:
* Operating System:

### Description

Describe what you were trying to get done.
Tell us what happened, what went wrong, and what you expected to happen.

### What I Did

```
Paste the command(s) you ran and the output.
If there was a crash, please include the traceback here.
```
* prakriya version:
* Python version:
* Operating System:
### Description
Describe what you were trying to get done.
Tell us what happened, what went wrong, and what you expected to happen.
### What I Did
```
Paste the command(s) you ran and the output.
If there was a crash, please include the traceback here.
```
156 changes: 78 additions & 78 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,78 +1,78 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# pyenv python configuration file
.python-version

# Data files
prakriya/data/json/*
prakriya/data/jsonsorted/*
prakriya/data/composite_v003.tar.gz

# Inhouse usage scripts
scrap/*

# Intermediary scripts
prakriya/jsonind.py
tests/speedtest.py
prakriya/data/generated*
prakriya/tests/useless.py
tests/useless.py
prakriya/data/dcs.json
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/
# Translations
*.mo
*.pot
# Django stuff:
*.log
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# pyenv python configuration file
.python-version
# Data files
prakriya/data/json/*
prakriya/data/jsonsorted/*
prakriya/data/composite_v003.tar.gz
# Inhouse usage scripts
scrap/*
# Intermediary scripts
prakriya/jsonind.py
tests/speedtest.py
prakriya/data/generated*
prakriya/tests/useless.py
tests/useless.py
prakriya/data/dcs.json
4 changes: 0 additions & 4 deletions .pyup.yml

This file was deleted.

76 changes: 38 additions & 38 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
# Config file for automatic testing at travis-ci.org
# This file will be regenerated if you run travis_pypi_setup.py

language: python
python:
- 3.6
- 3.5
- 3.4
- 2.7
- "pypy"

# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -U tox-travis
- pip install -r requirements_docs.txt

# command to run tests, e.g. python setup.py test
script:
- coverage run --source . --omit=setup.py,travis_pypi_setup.py,docs/conf.py -m py.test
- tox

after_success:
- coverage report --omit '*site-package*'
- cat .coverage
- coveralls

# After you create the Github repo and add it to Travis, run the
# travis_pypi_setup.py script to finish PyPI deployment setup
deploy:
provider: pypi
distributions: sdist bdist_wheel
user: drdhaval2785
password:
secure: PLEASE_REPLACE_ME
on:
tags: true
repo: drdhaval2785/python-prakriya
python: 2.7
# Config file for automatic testing at travis-ci.org
# This file will be regenerated if you run travis_pypi_setup.py
language: python
python:
- 3.6
- 3.5
- 3.4
- 2.7
- "pypy"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -U tox-travis
- pip install -r requirements_docs.txt
# command to run tests, e.g. python setup.py test
script:
- coverage run --source . --omit=setup.py,travis_pypi_setup.py,docs/conf.py -m py.test
- tox
after_success:
- coverage report --omit '*site-package*'
- cat .coverage
- coveralls
# After you create the Github repo and add it to Travis, run the
# travis_pypi_setup.py script to finish PyPI deployment setup
deploy:
provider: pypi
distributions: sdist bdist_wheel
user: drdhaval2785
password:
secure: PLEASE_REPLACE_ME
on:
tags: true
repo: drdhaval2785/python-prakriya
python: 2.7
26 changes: 13 additions & 13 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
=======
Credits
=======

Development Lead
----------------

* Dr. Dhaval Patel <[email protected]>

Contributors
------------

None yet. Why not be the first?
=======
Credits
=======
Development Lead
----------------
* Dr. Dhaval Patel <[email protected]>
Contributors
------------
None yet. Why not be the first?
Loading