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.
@@ -0,0 +1 @@
1
+ include index.ts
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: trustlint
3
+ Version: 1.0.0
4
+ Requires-Python: >=3.7
5
+ Dynamic: requires-python
@@ -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
@@ -0,0 +1 @@
1
+ console.log('TrustLint - A powerful compliance linting tool for your development workflow');
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,11 @@
1
+ from setuptools import setup
2
+
3
+ setup(
4
+ name="trustlint",
5
+ version="1.0.0",
6
+ packages=["trustlint"],
7
+ package_dir={"trustlint": "."},
8
+ package_data={"trustlint": ["index.ts"]},
9
+ include_package_data=True,
10
+ python_requires=">=3.7",
11
+ )
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: trustlint
3
+ Version: 1.0.0
4
+ Requires-Python: >=3.7
5
+ Dynamic: requires-python
@@ -0,0 +1,11 @@
1
+ MANIFEST.in
2
+ README.md
3
+ __init__.py
4
+ index.ts
5
+ setup.py
6
+ ./__init__.py
7
+ ./index.ts
8
+ trustlint.egg-info/PKG-INFO
9
+ trustlint.egg-info/SOURCES.txt
10
+ trustlint.egg-info/dependency_links.txt
11
+ trustlint.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ trustlint