Skip to content

Commit

Permalink
fixed untracked files
Browse files Browse the repository at this point in the history
  • Loading branch information
bgsrb committed Apr 8, 2018
1 parent f8ea4f3 commit 38fa901
Show file tree
Hide file tree
Showing 5 changed files with 113 additions and 17 deletions.
112 changes: 107 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,107 @@
.vs
nuget
pip.txt
dist
kavenegar.egg-info
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

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

# 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/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/

# my ignores
.pypirc
9 changes: 0 additions & 9 deletions .pypirc

This file was deleted.

Binary file removed __pycache__/kavenegar.cpython-36.pyc
Binary file not shown.
3 changes: 3 additions & 0 deletions gitignore.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
git rm -r --cached .
git add .
git commit -m "fixed untracked files"
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
setup(
name = "kavenegar",
py_modules = ['kavenegar'],
version = "1.1.0",
version = "1.1.1",
description = "Kavenegar Python library",
author = "Kavenegar Team",
author_email = "[email protected]",
Expand All @@ -22,6 +22,6 @@
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: Telephony"
"Topic :: Communications :: Telephony",
]
)
)

0 comments on commit 38fa901

Please sign in to comment.