nict 0.0.2__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 nict might be problematic. Click here for more details.
- nict-0.0.2/MANIFEST.in +2 -0
- nict-0.0.2/PKG-INFO +11 -0
- nict-0.0.2/README.md +1 -0
- nict-0.0.2/nict.egg-info/PKG-INFO +11 -0
- nict-0.0.2/nict.egg-info/SOURCES.txt +8 -0
- nict-0.0.2/nict.egg-info/dependency_links.txt +1 -0
- nict-0.0.2/nict.egg-info/top_level.txt +1 -0
- nict-0.0.2/nictemp/frp_0.45.0_linux_amd64.tar.gz +0 -0
- nict-0.0.2/setup.cfg +4 -0
- nict-0.0.2/setup.py +30 -0
nict-0.0.2/MANIFEST.in
ADDED
nict-0.0.2/PKG-INFO
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: nict
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: An easy to use library to speed up computation (by parallelizing on multi CPUs).
|
|
5
|
+
Home-page:
|
|
6
|
+
Author: NICHOLAS WU
|
|
7
|
+
Author-email: nicholas_wu@aliyun.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Requires-Python: >=3.5
|
|
10
|
+
|
|
11
|
+
就不告诉你.
|
nict-0.0.2/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# 无
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: nict
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: An easy to use library to speed up computation (by parallelizing on multi CPUs).
|
|
5
|
+
Home-page:
|
|
6
|
+
Author: NICHOLAS WU
|
|
7
|
+
Author-email: nicholas_wu@aliyun.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Requires-Python: >=3.5
|
|
10
|
+
|
|
11
|
+
就不告诉你.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
Binary file
|
nict-0.0.2/setup.cfg
ADDED
nict-0.0.2/setup.py
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
# -*- encoding: utf-8 -*-
|
|
3
|
+
'''
|
|
4
|
+
@File : setup.py
|
|
5
|
+
@Time : 2024/09/02 11:35:51
|
|
6
|
+
@Author : nicholas wu
|
|
7
|
+
@Version : 1.0
|
|
8
|
+
@Contact : nicholas_wu@aliyun.com
|
|
9
|
+
@License :
|
|
10
|
+
@Desc : None
|
|
11
|
+
'''
|
|
12
|
+
|
|
13
|
+
from setuptools import setup, find_packages
|
|
14
|
+
|
|
15
|
+
install_requires = []
|
|
16
|
+
|
|
17
|
+
setup(
|
|
18
|
+
name="nict",
|
|
19
|
+
version="0.0.2",
|
|
20
|
+
python_requires=">=3.5",
|
|
21
|
+
packages=find_packages(),
|
|
22
|
+
author="NICHOLAS WU",
|
|
23
|
+
author_email="nicholas_wu@aliyun.com",
|
|
24
|
+
description="An easy to use library to speed up computation (by parallelizing on multi CPUs).",
|
|
25
|
+
long_description="就不告诉你.",
|
|
26
|
+
url="",
|
|
27
|
+
include_package_data=True,
|
|
28
|
+
install_requires=install_requires,
|
|
29
|
+
license="MIT",
|
|
30
|
+
)
|