tju 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.
- tju-0.0.1/PKG-INFO +7 -0
- tju-0.0.1/setup.cfg +4 -0
- tju-0.0.1/setup.py +13 -0
- tju-0.0.1/tju/__init__.py +1 -0
- tju-0.0.1/tju.egg-info/PKG-INFO +7 -0
- tju-0.0.1/tju.egg-info/SOURCES.txt +6 -0
- tju-0.0.1/tju.egg-info/dependency_links.txt +1 -0
- tju-0.0.1/tju.egg-info/top_level.txt +1 -0
tju-0.0.1/PKG-INFO
ADDED
tju-0.0.1/setup.cfg
ADDED
tju-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from setuptools import setup
|
|
2
|
+
|
|
3
|
+
import tju
|
|
4
|
+
|
|
5
|
+
setup(
|
|
6
|
+
name="tju",
|
|
7
|
+
version=tju.__version__,
|
|
8
|
+
author="super",
|
|
9
|
+
author_email="hi@repus.me",
|
|
10
|
+
description="The Python TJU client for humans.",
|
|
11
|
+
url="https://github.com/superpung/tju",
|
|
12
|
+
packages=['tju']
|
|
13
|
+
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tju
|