email-profile 0.1.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,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Fernando Celmer
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,50 @@
1
+ Metadata-Version: 2.1
2
+ Name: email-profile
3
+ Version: 0.1.0
4
+ Summary: 📩 Email Profile
5
+ Author: Fernando Celmer
6
+ Author-email: email@fernandocelmer.com
7
+ Project-URL: Homepage, https://github.com/linux-profile/email-profile
8
+ Project-URL: Repository, https://github.com/linux-profile/email-profile
9
+ Project-URL: Documentation, https://github.com/linux-profile/email-profile/blob/master/README.md
10
+ Project-URL: Issues, https://github.com/linux-profile/email-profile/issues
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Natural Language :: English
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Requires-Python: >=3.8
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+
25
+ # email-profile
26
+
27
+ ![GitHub Org's stars](https://img.shields.io/github/stars/linux-profile?label=LinuxProfile&style=flat-square)
28
+
29
+ ---
30
+
31
+ - **Documentation**: [Link](https://github.com/FernandoCelmer/email-profile)
32
+ - **Source Code**: [Link](https://github.com/FernandoCelmer/email-profile)
33
+
34
+ ---
35
+
36
+ ## Commit Style
37
+
38
+ - ⚙️ FEATURE
39
+ - 📝 PEP8
40
+ - 📌 ISSUE
41
+ - 🪲 BUG
42
+ - 📘 DOCS
43
+ - 📦 PyPI
44
+ - ❤️️ TEST
45
+ - ⬆️ CI/CD
46
+ - ⚠️ SECURITY
47
+
48
+ ## License
49
+
50
+ This project is licensed under the terms of the MIT license.
@@ -0,0 +1,26 @@
1
+ # email-profile
2
+
3
+ ![GitHub Org's stars](https://img.shields.io/github/stars/linux-profile?label=LinuxProfile&style=flat-square)
4
+
5
+ ---
6
+
7
+ - **Documentation**: [Link](https://github.com/FernandoCelmer/email-profile)
8
+ - **Source Code**: [Link](https://github.com/FernandoCelmer/email-profile)
9
+
10
+ ---
11
+
12
+ ## Commit Style
13
+
14
+ - ⚙️ FEATURE
15
+ - 📝 PEP8
16
+ - 📌 ISSUE
17
+ - 🪲 BUG
18
+ - 📘 DOCS
19
+ - 📦 PyPI
20
+ - ❤️️ TEST
21
+ - ⬆️ CI/CD
22
+ - ⚠️ SECURITY
23
+
24
+ ## License
25
+
26
+ This project is licensed under the terms of the MIT license.
@@ -0,0 +1,24 @@
1
+ __version__ = "0.1.0"
2
+
3
+ __author__ = 'Fernando Celmer <email@fernandocelmer.com>'
4
+ __copyright__ = """MIT License
5
+
6
+ Copyright (c) 2024 Email Profile
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ of this software and associated documentation files (the "Software"), to deal
10
+ in the Software without restriction, including without limitation the rights
11
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ copies of the Software, and to permit persons to whom the Software is
13
+ furnished to do so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in all
16
+ copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
+ SOFTWARE."""
@@ -0,0 +1,6 @@
1
+ def main():
2
+ pass
3
+
4
+
5
+ if __name__ == '__main__':
6
+ main()
@@ -0,0 +1,50 @@
1
+ Metadata-Version: 2.1
2
+ Name: email-profile
3
+ Version: 0.1.0
4
+ Summary: 📩 Email Profile
5
+ Author: Fernando Celmer
6
+ Author-email: email@fernandocelmer.com
7
+ Project-URL: Homepage, https://github.com/linux-profile/email-profile
8
+ Project-URL: Repository, https://github.com/linux-profile/email-profile
9
+ Project-URL: Documentation, https://github.com/linux-profile/email-profile/blob/master/README.md
10
+ Project-URL: Issues, https://github.com/linux-profile/email-profile/issues
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Natural Language :: English
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Requires-Python: >=3.8
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+
25
+ # email-profile
26
+
27
+ ![GitHub Org's stars](https://img.shields.io/github/stars/linux-profile?label=LinuxProfile&style=flat-square)
28
+
29
+ ---
30
+
31
+ - **Documentation**: [Link](https://github.com/FernandoCelmer/email-profile)
32
+ - **Source Code**: [Link](https://github.com/FernandoCelmer/email-profile)
33
+
34
+ ---
35
+
36
+ ## Commit Style
37
+
38
+ - ⚙️ FEATURE
39
+ - 📝 PEP8
40
+ - 📌 ISSUE
41
+ - 🪲 BUG
42
+ - 📘 DOCS
43
+ - 📦 PyPI
44
+ - ❤️️ TEST
45
+ - ⬆️ CI/CD
46
+ - ⚠️ SECURITY
47
+
48
+ ## License
49
+
50
+ This project is licensed under the terms of the MIT license.
@@ -0,0 +1,11 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ email_profile/__init__.py
5
+ email_profile/main.py
6
+ email_profile.egg-info/PKG-INFO
7
+ email_profile.egg-info/SOURCES.txt
8
+ email_profile.egg-info/dependency_links.txt
9
+ email_profile.egg-info/entry_points.txt
10
+ email_profile.egg-info/top_level.txt
11
+ email_profile.egg-info/zip-safe
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ email = email_profile.main:main
@@ -0,0 +1 @@
1
+ email_profile
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,55 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+
4
+ from email_profile import __version__
5
+ from setuptools import setup
6
+ from setuptools.command.install import install
7
+
8
+
9
+ with open("README.md", "r", encoding="utf-8") as fh:
10
+ long_description = fh.read()
11
+
12
+
13
+ class CustomInstallCommand(install):
14
+ def run(self):
15
+ install.run(self)
16
+
17
+
18
+ setup(
19
+ name="email-profile",
20
+ fullname='email-profile',
21
+ version=__version__,
22
+ author="Fernando Celmer",
23
+ author_email="email@fernandocelmer.com",
24
+ description="📩 Email Profile",
25
+ long_description=long_description,
26
+ long_description_content_type="text/markdown",
27
+ project_urls = {
28
+ 'Homepage': 'https://github.com/linux-profile/email-profile',
29
+ 'Repository': 'https://github.com/linux-profile/email-profile',
30
+ 'Documentation': 'https://github.com/linux-profile/email-profile/blob/master/README.md',
31
+ 'Issues': 'https://github.com/linux-profile/email-profile/issues',
32
+ },
33
+ cmdclass={
34
+ 'install': CustomInstallCommand,
35
+ },
36
+ classifiers=[
37
+ 'Development Status :: 4 - Beta',
38
+ "Operating System :: OS Independent",
39
+ "License :: OSI Approved :: MIT License",
40
+ 'Intended Audience :: Developers',
41
+ 'Natural Language :: English',
42
+ "Programming Language :: Python :: 3.8",
43
+ "Programming Language :: Python :: 3.9",
44
+ "Programming Language :: Python :: 3.10",
45
+ "Programming Language :: Python :: 3.11",
46
+ "Programming Language :: Python :: 3.12",
47
+ ],
48
+ packages=['email_profile'],
49
+ include_package_data=True,
50
+ python_requires=">=3.8",
51
+ zip_safe=True,
52
+ entry_points={
53
+ 'console_scripts': ['email=email_profile.main:main'],
54
+ },
55
+ )