jaclang 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.

Potentially problematic release.


This version of jaclang might be problematic. Click here for more details.

jaclang-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.1
2
+ Name: jaclang
3
+ Version: 0.0.1
4
+ Home-page: https://github.com/Jaseci-Labs/jaseci2
5
+ Author: Jason Mars
6
+ Author-email: jason@jaseci.org
@@ -0,0 +1,16 @@
1
+ # Jaseci 2
2
+
3
+ The next generation is upon us... (In ideation and specification phase)
4
+
5
+ Get to the docs, check the guidelines on how to contribute.
6
+
7
+ ## Getting Docs Up Locally
8
+
9
+ Go to `/docs` base dir and run
10
+
11
+ ```bash
12
+ yarn install
13
+ yarn start
14
+ ```
15
+
16
+ For instructions on installing `yarn`, start on that journey with [their instructions](https://yarnpkg.com/getting-started/install).
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.1
2
+ Name: jaclang
3
+ Version: 0.0.1
4
+ Home-page: https://github.com/Jaseci-Labs/jaseci2
5
+ Author: Jason Mars
6
+ Author-email: jason@jaseci.org
@@ -0,0 +1,6 @@
1
+ README.md
2
+ setup.py
3
+ jaclang.egg-info/PKG-INFO
4
+ jaclang.egg-info/SOURCES.txt
5
+ jaclang.egg-info/dependency_links.txt
6
+ jaclang.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
jaclang-0.0.1/setup.py ADDED
@@ -0,0 +1,19 @@
1
+ """Jaclang setup file."""
2
+
3
+ from setuptools import find_packages, setup
4
+
5
+ VERSION = "0.0.1"
6
+
7
+ setup(
8
+ name="jaclang",
9
+ version=VERSION,
10
+ packages=find_packages(include=["jaclang", "jaclang.*"]),
11
+ install_requires=[],
12
+ package_data={
13
+ "": ["*.ini"],
14
+ },
15
+ entry_points={},
16
+ author="Jason Mars",
17
+ author_email="jason@jaseci.org",
18
+ url="https://github.com/Jaseci-Labs/jaseci2",
19
+ )