Skip to content

Commit d10093d

Browse files
committed
Minor Changes
1 parent 25c77bb commit d10093d

13 files changed

+205
-4
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ __pycache__/
1010
.Python
1111
build/
1212
develop-eggs/
13-
dist/
13+
# dist/
1414
downloads/
1515
eggs/
1616
.eggs/

CHANGES.rst

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Changelog
2+
=========
3+
4+
1.0.0
5+
-----
6+
2018-11-06: Initial public release
7+
8+
0.1.0
9+
-----
10+
11+
2018-10-25: Beta Version internal

CODE_OF_CONDUCT.md

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to making participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, sex characteristics, gender identity and expression,
9+
level of experience, education, socio-economic status, nationality, personal
10+
appearance, race, religion, or sexual identity and orientation.
11+
12+
## Our Standards
13+
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
16+
17+
* Using welcoming and inclusive language
18+
* Being respectful of differing viewpoints and experiences
19+
* Gracefully accepting constructive criticism
20+
* Focusing on what is best for the community
21+
* Showing empathy towards other community members
22+
23+
Examples of unacceptable behavior by participants include:
24+
25+
* The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
* Trolling, insulting/derogatory comments, and personal or political attacks
28+
* Public or private harassment
29+
* Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
* Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
33+
34+
## Our Responsibilities
35+
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
39+
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
45+
46+
## Scope
47+
48+
This Code of Conduct applies both within project spaces and in public spaces
49+
when an individual is representing the project or its community. Examples of
50+
representing a project or community include using an official project e-mail
51+
address, posting via an official social media account, or acting as an appointed
52+
representative at an online or offline event. Representation of a project may be
53+
further defined and clarified by project maintainers.
54+
55+
## Enforcement
56+
57+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58+
reported by contacting the project team at [email protected]. All
59+
complaints will be reviewed and investigated and will result in a response that
60+
is deemed necessary and appropriate to the circumstances. The project team is
61+
obligated to maintain confidentiality with regard to the reporter of an incident.
62+
Further details of specific enforcement policies may be posted separately.
63+
64+
Project maintainers who do not follow or enforce the Code of Conduct in good
65+
faith may face temporary or permanent repercussions as determined by other
66+
members of the project's leadership.
67+
68+
## Attribution
69+
70+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72+
73+
[homepage]: https://www.contributor-covenant.org
74+
75+
For answers to common questions about this code of conduct, see
76+
https://www.contributor-covenant.org/faq

CONTRIBUTING.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Contributing
2+
3+
When contributing to this repository, please first discuss the change you wish to make via issue,
4+
email, or any other method with the owners of this repository before making a change.
5+
6+
Please note we have a code of conduct, please follow it in all your interactions with the project.
7+
8+
## Pull Request Process
9+
10+
1. Ensure any install or build dependencies are removed before the end of the layer when doing a
11+
build.
12+
2. Update the README.md with details of changes to the interface, this includes new environment
13+
variables, exposed ports, useful file locations and container parameters.
14+
3. Increase the version numbers in any examples files and the README.md to the new version that this
15+
Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/).
16+
4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you
17+
do not have permission to do that, you may request the second reviewer to merge it for you.

ISSUE_TEMPLATE.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
* **I'm submitting a ... **
2+
- [ ] bug report
3+
- [ ] feature request
4+
- [ ] support request
5+
6+
7+
* **Do you want to request a *feature* or report a *bug*?**
8+
9+
10+
11+
* **What is the current behavior?**
12+
13+
14+
15+
* **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem
16+
17+
18+
19+
* **What is the expected behavior?**
20+
21+
22+
23+
* **What is the motivation / use case for changing the behavior?**
24+
25+
26+
27+
* **Please tell us about your environment:**
28+
29+
- Python Version :
30+
- OS, OS Version :
31+
32+
33+
34+
* **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc)

PULL_REQUEST_TEMPLATE.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
* **Please check if the Pull Request fulfills these requirements**
2+
- [ ] The commit message follows our guidelines
3+
- [ ] Tests for the changes have been added (for bug fixes / features)
4+
- [ ] Docs have been added / updated (for bug fixes / features)
5+
6+
7+
* **What kind of change does this Pull Request introduce?** (Bug fix, feature, docs update, ...)
8+
9+
10+
11+
* **What is the current behavior?** (You can also link to an open issue here)
12+
13+
14+
15+
* **What is the new behavior (if this is a feature change)?**
16+
17+
18+
19+
* **Does this Pull Request introduce a breaking change?** (What changes might users need to make in their application due to this PR?)
20+
21+
22+
23+
* **Other information**:

README.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# fingerprint - track the changes of Your Windows System
2-
forensic analytics for windows registry and files.
1+
fingerprint
2+
=================
3+
4+
Monitoring Registry and File Changes in Windows - forensic analytics for windows registry and files.
35

46
I wrote this software because those I found in the wild are either too slow, undocumented, or expansive.
57

build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
ls_commands = ['pyinstaller --onefile fingerprint.py -y',
1111
'pyinstaller --onefile fingerprint_diff.py -y',
12-
'pyinstaller --onefile fingerprint_filter_procmon.py -y']
12+
'pyinstaller --onefile fingerprint_filter.py -y']
1313

1414
for s_command in ls_commands:
1515
response = run_command(s_command)

dist/fingerprint.exe

5.2 MB
Binary file not shown.

dist/fingerprint_diff.exe

5.2 MB
Binary file not shown.

dist/fingerprint_filter.exe

5.2 MB
Binary file not shown.
File renamed without changes.

setup.py

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
"""Setuptools entry point."""
2+
import codecs
3+
import os
4+
5+
try:
6+
from setuptools import setup
7+
except ImportError:
8+
from distutils.core import setup
9+
10+
11+
CLASSIFIERS = [
12+
'Development Status :: 5 - Production/Stable',
13+
'Intended Audience :: Developers',
14+
'License :: OSI Approved :: MIT License',
15+
'Natural Language :: English',
16+
'Operating System :: OS Independent',
17+
'Programming Language :: Python',
18+
'Topic :: Software Development :: Libraries :: Python Modules'
19+
]
20+
21+
dirname = os.path.dirname(__file__)
22+
23+
long_description = (
24+
codecs.open(os.path.join(dirname, 'README2.rst'), encoding='utf-8').read() + '\n' +
25+
codecs.open(os.path.join(dirname, 'CHANGES.rst'), encoding='utf-8').read()
26+
)
27+
28+
setup(
29+
name='fingerprint',
30+
version='1.0.0',
31+
description='Fingerprint Windows System Status',
32+
long_description=long_description,
33+
author='Robert Nowotny',
34+
author_email='[email protected]',
35+
url='https://github.com/bitranox/fingerprint',
36+
packages=['fingerprint','fingerprint-diff','fingerprint-filter'],
37+
install_requires=['python-registry'],
38+
classifiers=CLASSIFIERS)

0 commit comments

Comments
 (0)