glaring 0.1__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.
- glaring-0.1/MANIFEST.in +3 -0
- glaring-0.1/PKG-INFO +62 -0
- glaring-0.1/README.md +18 -0
- glaring-0.1/dev.txt +10 -0
- glaring-0.1/glaring/__init__.py +0 -0
- glaring-0.1/glaring/version.txt +1 -0
- glaring-0.1/glaring.egg-info/PKG-INFO +62 -0
- glaring-0.1/glaring.egg-info/SOURCES.txt +11 -0
- glaring-0.1/glaring.egg-info/dependency_links.txt +1 -0
- glaring-0.1/glaring.egg-info/requires.txt +12 -0
- glaring-0.1/glaring.egg-info/top_level.txt +1 -0
- glaring-0.1/setup.cfg +4 -0
- glaring-0.1/setup.py +69 -0
glaring-0.1/MANIFEST.in
ADDED
glaring-0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: glaring
|
|
3
|
+
Version: 0.1
|
|
4
|
+
Summary: glaring
|
|
5
|
+
Home-page: https://github.com/angry-penguins/glaring
|
|
6
|
+
Author: dev
|
|
7
|
+
Author-email: p.shingavi@yahoo.com
|
|
8
|
+
License: BSD
|
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
10
|
+
Classifier: Environment :: Console
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Intended Audience :: System Administrators
|
|
13
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
14
|
+
Classifier: Operating System :: POSIX
|
|
15
|
+
Classifier: Operating System :: Unix
|
|
16
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
17
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
18
|
+
Classifier: Programming Language :: Python
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Software Development
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
Provides-Extra: dev
|
|
25
|
+
Requires-Dist: pytest; extra == "dev"
|
|
26
|
+
Requires-Dist: coverage; extra == "dev"
|
|
27
|
+
Requires-Dist: flake8; extra == "dev"
|
|
28
|
+
Requires-Dist: raft; extra == "dev"
|
|
29
|
+
Requires-Dist: twine; extra == "dev"
|
|
30
|
+
Requires-Dist: pytest_aspec; extra == "dev"
|
|
31
|
+
Requires-Dist: pytest_cov; extra == "dev"
|
|
32
|
+
Requires-Dist: ipython; extra == "dev"
|
|
33
|
+
Requires-Dist: bumpversion; extra == "dev"
|
|
34
|
+
Requires-Dist: convocations; extra == "dev"
|
|
35
|
+
Dynamic: author
|
|
36
|
+
Dynamic: author-email
|
|
37
|
+
Dynamic: classifier
|
|
38
|
+
Dynamic: description
|
|
39
|
+
Dynamic: description-content-type
|
|
40
|
+
Dynamic: home-page
|
|
41
|
+
Dynamic: license
|
|
42
|
+
Dynamic: provides-extra
|
|
43
|
+
Dynamic: summary
|
|
44
|
+
|
|
45
|
+
# contributing / getting started
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
cd /path/to/glaring
|
|
49
|
+
make setup
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
this will create a virtual environment and install requirements.
|
|
53
|
+
you can then run tests using:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
make test
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
running tests will require access to the necessary secrets and the appropriate
|
|
60
|
+
vault.
|
|
61
|
+
|
|
62
|
+
powered by angry penguins.
|
glaring-0.1/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# contributing / getting started
|
|
2
|
+
|
|
3
|
+
```bash
|
|
4
|
+
cd /path/to/glaring
|
|
5
|
+
make setup
|
|
6
|
+
```
|
|
7
|
+
|
|
8
|
+
this will create a virtual environment and install requirements.
|
|
9
|
+
you can then run tests using:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
make test
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
running tests will require access to the necessary secrets and the appropriate
|
|
16
|
+
vault.
|
|
17
|
+
|
|
18
|
+
powered by angry penguins.
|
glaring-0.1/dev.txt
ADDED
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.1
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: glaring
|
|
3
|
+
Version: 0.1
|
|
4
|
+
Summary: glaring
|
|
5
|
+
Home-page: https://github.com/angry-penguins/glaring
|
|
6
|
+
Author: dev
|
|
7
|
+
Author-email: p.shingavi@yahoo.com
|
|
8
|
+
License: BSD
|
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
10
|
+
Classifier: Environment :: Console
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Intended Audience :: System Administrators
|
|
13
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
14
|
+
Classifier: Operating System :: POSIX
|
|
15
|
+
Classifier: Operating System :: Unix
|
|
16
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
17
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
18
|
+
Classifier: Programming Language :: Python
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Software Development
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
Provides-Extra: dev
|
|
25
|
+
Requires-Dist: pytest; extra == "dev"
|
|
26
|
+
Requires-Dist: coverage; extra == "dev"
|
|
27
|
+
Requires-Dist: flake8; extra == "dev"
|
|
28
|
+
Requires-Dist: raft; extra == "dev"
|
|
29
|
+
Requires-Dist: twine; extra == "dev"
|
|
30
|
+
Requires-Dist: pytest_aspec; extra == "dev"
|
|
31
|
+
Requires-Dist: pytest_cov; extra == "dev"
|
|
32
|
+
Requires-Dist: ipython; extra == "dev"
|
|
33
|
+
Requires-Dist: bumpversion; extra == "dev"
|
|
34
|
+
Requires-Dist: convocations; extra == "dev"
|
|
35
|
+
Dynamic: author
|
|
36
|
+
Dynamic: author-email
|
|
37
|
+
Dynamic: classifier
|
|
38
|
+
Dynamic: description
|
|
39
|
+
Dynamic: description-content-type
|
|
40
|
+
Dynamic: home-page
|
|
41
|
+
Dynamic: license
|
|
42
|
+
Dynamic: provides-extra
|
|
43
|
+
Dynamic: summary
|
|
44
|
+
|
|
45
|
+
# contributing / getting started
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
cd /path/to/glaring
|
|
49
|
+
make setup
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
this will create a virtual environment and install requirements.
|
|
53
|
+
you can then run tests using:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
make test
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
running tests will require access to the necessary secrets and the appropriate
|
|
60
|
+
vault.
|
|
61
|
+
|
|
62
|
+
powered by angry penguins.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
glaring
|
glaring-0.1/setup.cfg
ADDED
glaring-0.1/setup.py
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
|
|
3
|
+
# Support setuptools only, distutils has a divergent and more annoying API and
|
|
4
|
+
# few folks will lack setuptools.
|
|
5
|
+
from setuptools import setup
|
|
6
|
+
from importlib.resources import open_text
|
|
7
|
+
# Version info -- read without importing
|
|
8
|
+
_locals = {}
|
|
9
|
+
|
|
10
|
+
version = '0.1'
|
|
11
|
+
|
|
12
|
+
# PyYAML ships a split Python 2/3 codebase. Unfortunately, some pip versions
|
|
13
|
+
# attempt to interpret both halves of PyYAML, yielding SyntaxErrors. Thus, we
|
|
14
|
+
# exclude whichever appears inappropriate for the installing interpreter.
|
|
15
|
+
exclude = ["*.yaml2", 'test']
|
|
16
|
+
|
|
17
|
+
# Frankenstein long_description: version-specific changelog note + README
|
|
18
|
+
with open('README.md') as f:
|
|
19
|
+
long_description = f.read()
|
|
20
|
+
|
|
21
|
+
extras = {}
|
|
22
|
+
all_extras = set()
|
|
23
|
+
for x in [ 'dev' ]:
|
|
24
|
+
filename = f'{x}.txt'
|
|
25
|
+
with open(filename, 'r') as f:
|
|
26
|
+
st = f.read()
|
|
27
|
+
rg = st.split()
|
|
28
|
+
extras[x] = rg
|
|
29
|
+
if x != 'dev':
|
|
30
|
+
all_extras |= set(rg)
|
|
31
|
+
if all_extras:
|
|
32
|
+
all_extras = list(all_extras)
|
|
33
|
+
all_extras.sort()
|
|
34
|
+
extras['all'] = all_extras
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
setup(
|
|
38
|
+
name='glaring',
|
|
39
|
+
version=version,
|
|
40
|
+
description='glaring',
|
|
41
|
+
license='BSD',
|
|
42
|
+
long_description=long_description,
|
|
43
|
+
long_description_content_type='text/markdown',
|
|
44
|
+
author='dev',
|
|
45
|
+
author_email='p.shingavi@yahoo.com',
|
|
46
|
+
url='https://github.com/angry-penguins/glaring',
|
|
47
|
+
packages=[
|
|
48
|
+
'glaring',
|
|
49
|
+
],
|
|
50
|
+
classifiers=[
|
|
51
|
+
'Development Status :: 5 - Production/Stable',
|
|
52
|
+
'Environment :: Console',
|
|
53
|
+
'Intended Audience :: Developers',
|
|
54
|
+
'Intended Audience :: System Administrators',
|
|
55
|
+
'License :: OSI Approved :: BSD License',
|
|
56
|
+
'Operating System :: POSIX',
|
|
57
|
+
'Operating System :: Unix',
|
|
58
|
+
'Operating System :: MacOS :: MacOS X',
|
|
59
|
+
'Operating System :: Microsoft :: Windows',
|
|
60
|
+
'Programming Language :: Python',
|
|
61
|
+
'Programming Language :: Python :: 3.13',
|
|
62
|
+
'Topic :: Software Development',
|
|
63
|
+
'Topic :: Software Development :: Libraries',
|
|
64
|
+
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
65
|
+
],
|
|
66
|
+
install_requires=[
|
|
67
|
+
],
|
|
68
|
+
extras_require=extras,
|
|
69
|
+
)
|