beamz 0.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.
beamz-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: beamz
3
+ Version: 0.0.1
4
+ Summary: Reserved package name.
5
+ Home-page: https://github.com/quentinwach/beamz
6
+ Author: Quentin Wach
7
+ Author-email: quentin.wach@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Requires-Python: >=3.6
10
+ Description-Content-Type: text/markdown
11
+ Dynamic: author
12
+ Dynamic: author-email
13
+ Dynamic: classifier
14
+ Dynamic: description-content-type
15
+ Dynamic: home-page
16
+ Dynamic: requires-python
17
+ Dynamic: summary
beamz-0.0.1/README.md ADDED
File without changes
File without changes
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: beamz
3
+ Version: 0.0.1
4
+ Summary: Reserved package name.
5
+ Home-page: https://github.com/quentinwach/beamz
6
+ Author: Quentin Wach
7
+ Author-email: quentin.wach@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Requires-Python: >=3.6
10
+ Description-Content-Type: text/markdown
11
+ Dynamic: author
12
+ Dynamic: author-email
13
+ Dynamic: classifier
14
+ Dynamic: description-content-type
15
+ Dynamic: home-page
16
+ Dynamic: requires-python
17
+ Dynamic: summary
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ beamz/__init__.py
4
+ beamz.egg-info/PKG-INFO
5
+ beamz.egg-info/SOURCES.txt
6
+ beamz.egg-info/dependency_links.txt
7
+ beamz.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ beamz
beamz-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
beamz-0.0.1/setup.py ADDED
@@ -0,0 +1,17 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='beamz',
5
+ version='0.0.1',
6
+ packages=find_packages(),
7
+ description='Reserved package name.',
8
+ long_description=open('README.md').read(),
9
+ long_description_content_type='text/markdown',
10
+ author='Quentin Wach',
11
+ author_email='quentin.wach@gmail.com',
12
+ url='https://github.com/quentinwach/beamz',
13
+ classifiers=[
14
+ 'Programming Language :: Python :: 3',
15
+ ],
16
+ python_requires='>=3.6',
17
+ )