lilliepy-production-bundle 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,32 @@
1
+ Metadata-Version: 2.4
2
+ Name: lilliepy-production-bundle
3
+ Version: 1.0
4
+ Summary: helps with static files related stuff in the lilliepy framework
5
+ Home-page: https://github.com/websitedeb/lilliepy-production-bundle
6
+ Author: Sarthak Ghoshal
7
+ Author-email: sarthak22.ghoshal@gmail.com
8
+ License: MIT
9
+ Keywords: lilliepy,lilliepy-production-bundle,reactpy
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Requires-Python: >=3.6
14
+ Requires-Dist: reactpy
15
+ Requires-Dist: reactpy-utils
16
+ Requires-Dist: reactpy-apexcharts
17
+ Requires-Dist: reactpy-forms
18
+ Requires-Dist: reactpy-select
19
+ Requires-Dist: reactpy-table
20
+ Requires-Dist: lilliepy-head
21
+ Requires-Dist: lilliepy-statics
22
+ Requires-Dist: lilliepy-query
23
+ Requires-Dist: lilliepy-state
24
+ Dynamic: author
25
+ Dynamic: author-email
26
+ Dynamic: classifier
27
+ Dynamic: home-page
28
+ Dynamic: keywords
29
+ Dynamic: license
30
+ Dynamic: requires-dist
31
+ Dynamic: requires-python
32
+ Dynamic: summary
@@ -0,0 +1,32 @@
1
+ Metadata-Version: 2.4
2
+ Name: lilliepy-production-bundle
3
+ Version: 1.0
4
+ Summary: helps with static files related stuff in the lilliepy framework
5
+ Home-page: https://github.com/websitedeb/lilliepy-production-bundle
6
+ Author: Sarthak Ghoshal
7
+ Author-email: sarthak22.ghoshal@gmail.com
8
+ License: MIT
9
+ Keywords: lilliepy,lilliepy-production-bundle,reactpy
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Requires-Python: >=3.6
14
+ Requires-Dist: reactpy
15
+ Requires-Dist: reactpy-utils
16
+ Requires-Dist: reactpy-apexcharts
17
+ Requires-Dist: reactpy-forms
18
+ Requires-Dist: reactpy-select
19
+ Requires-Dist: reactpy-table
20
+ Requires-Dist: lilliepy-head
21
+ Requires-Dist: lilliepy-statics
22
+ Requires-Dist: lilliepy-query
23
+ Requires-Dist: lilliepy-state
24
+ Dynamic: author
25
+ Dynamic: author-email
26
+ Dynamic: classifier
27
+ Dynamic: home-page
28
+ Dynamic: keywords
29
+ Dynamic: license
30
+ Dynamic: requires-dist
31
+ Dynamic: requires-python
32
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ lilliepy_production_bundle.egg-info/PKG-INFO
3
+ lilliepy_production_bundle.egg-info/SOURCES.txt
4
+ lilliepy_production_bundle.egg-info/dependency_links.txt
5
+ lilliepy_production_bundle.egg-info/requires.txt
6
+ lilliepy_production_bundle.egg-info/top_level.txt
@@ -0,0 +1,10 @@
1
+ reactpy
2
+ reactpy-utils
3
+ reactpy-apexcharts
4
+ reactpy-forms
5
+ reactpy-select
6
+ reactpy-table
7
+ lilliepy-head
8
+ lilliepy-statics
9
+ lilliepy-query
10
+ lilliepy-state
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,33 @@
1
+ from setuptools import setup
2
+
3
+ setup(
4
+ name='lilliepy-production-bundle',
5
+ version='1.0',
6
+ install_requires=[
7
+ "reactpy",
8
+ "reactpy-utils",
9
+ "reactpy-apexcharts",
10
+ "reactpy-forms",
11
+ "reactpy-select",
12
+ "reactpy-table",
13
+ "lilliepy-head",
14
+ "lilliepy-statics",
15
+ "lilliepy-query",
16
+ "lilliepy-state",
17
+ ],
18
+ entry_points={},
19
+ classifiers=[
20
+ 'Programming Language :: Python :: 3',
21
+ 'License :: OSI Approved :: MIT License',
22
+ 'Operating System :: OS Independent',
23
+ ],
24
+ description='helps with static files related stuff in the lilliepy framework',
25
+ keywords=[
26
+ "lilliepy", "lilliepy-production-bundle", "reactpy"
27
+ ],
28
+ url='https://github.com/websitedeb/lilliepy-production-bundle',
29
+ author='Sarthak Ghoshal',
30
+ author_email='sarthak22.ghoshal@gmail.com',
31
+ license='MIT',
32
+ python_requires='>=3.6',
33
+ )