trustlint 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- trustlint-1.0.0/MANIFEST.in +1 -0
- trustlint-1.0.0/PKG-INFO +5 -0
- trustlint-1.0.0/README.md +92 -0
- trustlint-1.0.0/__init__.py +0 -0
- trustlint-1.0.0/index.ts +1 -0
- trustlint-1.0.0/setup.cfg +4 -0
- trustlint-1.0.0/setup.py +11 -0
- trustlint-1.0.0/trustlint.egg-info/PKG-INFO +5 -0
- trustlint-1.0.0/trustlint.egg-info/SOURCES.txt +11 -0
- trustlint-1.0.0/trustlint.egg-info/dependency_links.txt +1 -0
- trustlint-1.0.0/trustlint.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
include index.ts
|
trustlint-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
# TrustLint
|
|
2
|
+
|
|
3
|
+
A powerful compliance linting tool for your development workflow, brought to you by ComplyEdge.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
### npm
|
|
8
|
+
```bash
|
|
9
|
+
npm install trustlint
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
### pip
|
|
13
|
+
```bash
|
|
14
|
+
pip install trustlint
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
```javascript
|
|
20
|
+
const trustLink = require('trustlint');
|
|
21
|
+
// The package will output its version and status
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Features
|
|
25
|
+
|
|
26
|
+
- Real-time compliance validation
|
|
27
|
+
- Integration with development workflows
|
|
28
|
+
- Automatic compliance checks
|
|
29
|
+
- Support for major regulatory frameworks
|
|
30
|
+
|
|
31
|
+
## Publishing to npm
|
|
32
|
+
|
|
33
|
+
To publish a new version:
|
|
34
|
+
|
|
35
|
+
1. Update version in `package.json`
|
|
36
|
+
2. Run `npm pack` to verify package contents
|
|
37
|
+
3. Run `npm publish` to publish to npm registry
|
|
38
|
+
|
|
39
|
+
## Publishing to PyPI (pip)
|
|
40
|
+
|
|
41
|
+
To publish a new version to PyPI:
|
|
42
|
+
|
|
43
|
+
1. Install the required tools:
|
|
44
|
+
```bash
|
|
45
|
+
pip install twine wheel
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
2. Create a `setup.py` file in your project root:
|
|
49
|
+
```python
|
|
50
|
+
from setuptools import setup, find_packages
|
|
51
|
+
|
|
52
|
+
setup(
|
|
53
|
+
name="trustlint",
|
|
54
|
+
version="0.1.0",
|
|
55
|
+
packages=find_packages(),
|
|
56
|
+
install_requires=[
|
|
57
|
+
# List your Python dependencies here
|
|
58
|
+
],
|
|
59
|
+
author="ComplyEdge",
|
|
60
|
+
author_email="support@complyedge.io",
|
|
61
|
+
description="A powerful compliance linting tool",
|
|
62
|
+
long_description=open("README.md").read(),
|
|
63
|
+
long_description_content_type="text/markdown",
|
|
64
|
+
url="https://github.com/yourusername/trustlint",
|
|
65
|
+
classifiers=[
|
|
66
|
+
"Programming Language :: Python :: 3",
|
|
67
|
+
"License :: OSI Approved :: MIT License",
|
|
68
|
+
"Operating System :: OS Independent",
|
|
69
|
+
],
|
|
70
|
+
python_requires=">=3.6",
|
|
71
|
+
)
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
3. Build the distribution packages:
|
|
75
|
+
```bash
|
|
76
|
+
python setup.py sdist bdist_wheel
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
4. Upload to PyPI:
|
|
80
|
+
```bash
|
|
81
|
+
twine upload dist/*
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Note: You'll need to have a PyPI account and be logged in. You can create an account at https://pypi.org/
|
|
85
|
+
|
|
86
|
+
## Support
|
|
87
|
+
|
|
88
|
+
For questions or support, contact us at support@complyedge.io
|
|
89
|
+
|
|
90
|
+
## License
|
|
91
|
+
|
|
92
|
+
MIT © ComplyEdge
|
|
File without changes
|
trustlint-1.0.0/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
console.log('TrustLint - A powerful compliance linting tool for your development workflow');
|
trustlint-1.0.0/setup.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
trustlint
|