Skip to content

Commit

Permalink
init commit for public
Browse files Browse the repository at this point in the history
  • Loading branch information
hysia committed Mar 15, 2019
0 parents commit b6479d8
Show file tree
Hide file tree
Showing 153 changed files with 17,111 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[run]
include = pocsuite3/*
omit =
*migrations*
*tests*
venv/*

[report]
include = pocsuite3/*
omit =
*migrations*
*tests*
venv/*
exclude_lines =
pragma: no cover
def __repr__
def __str__
if self.debug:
if settings.DEBUG
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:
65 changes: 65 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
### OSX ###
.DS_Store
.AppleDouble
.LSOverride

### SublimeText ###
# cache files for sublime text
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache

# workspace files are user-specific
*.sublime-workspace

# project files should be checked into the repository, unless a significant
# proportion of contributors will probably not be using SublimeText
# *.sublime-project

# sftp configuration file
sftp-config.json

# Basics
*.py[cod]
__pycache__

# Logs
logs
*.log
pip-log.txt
npm-debug.log*

# Unit test / coverage reports
.coverage
.tox
nosetests.xml
htmlcov

# Translations
*.mo
*.pot

# Pycharm
.idea/

# Vim

*~
*.swp
*.swo

# npm
node_modules/

# Compass
.sass-cache

# virtual environments
env/
.env
venv36/
venv/
build/
dist/
*.egg-info
.eggs/
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
version 1.0
---------------
* Init publish
14 changes: 14 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
hysia <[email protected]>
* for contributing core code

badcode <[email protected]>
* for contributing core code

cc <[email protected]>
* for contributing core code

w7ay <https://github.com/boy-hack>
* for contributing core code

phithon <root(at)leavesongs.com>
* for suggesting a couple of features
Loading

0 comments on commit b6479d8

Please sign in to comment.