dajidali 9.1.0__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- dajidali-9.1.0/LICENSE +1 -0
- dajidali-9.1.0/PKG-INFO +28 -0
- dajidali-9.1.0/README.md +4 -0
- dajidali-9.1.0/dajidali/__init__.py +2 -0
- dajidali-9.1.0/dajidali/core.py +2 -0
- dajidali-9.1.0/dajidali.egg-info/PKG-INFO +28 -0
- dajidali-9.1.0/dajidali.egg-info/SOURCES.txt +11 -0
- dajidali-9.1.0/dajidali.egg-info/dependency_links.txt +1 -0
- dajidali-9.1.0/dajidali.egg-info/requires.txt +1 -0
- dajidali-9.1.0/dajidali.egg-info/top_level.txt +1 -0
- dajidali-9.1.0/setup.cfg +4 -0
- dajidali-9.1.0/setup.py +22 -0
- dajidali-9.1.0/tests/test_core.py +0 -0
dajidali-9.1.0/LICENSE
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
MIT License
|
dajidali-9.1.0/PKG-INFO
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: dajidali
|
3
|
+
Version: 9.1.0
|
4
|
+
Summary: A brief description of your library
|
5
|
+
Home-page: https://github.com/feng/myfeng
|
6
|
+
Author: hhsdn
|
7
|
+
Author-email: empiresoft@qq.com
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
10
|
+
Classifier: Operating System :: OS Independent
|
11
|
+
Requires-Python: >=3.6
|
12
|
+
Description-Content-Type: text/markdown
|
13
|
+
License-File: LICENSE
|
14
|
+
Requires-Dist: numpy>=1.18.0
|
15
|
+
Dynamic: author
|
16
|
+
Dynamic: author-email
|
17
|
+
Dynamic: classifier
|
18
|
+
Dynamic: description
|
19
|
+
Dynamic: description-content-type
|
20
|
+
Dynamic: home-page
|
21
|
+
Dynamic: requires-dist
|
22
|
+
Dynamic: requires-python
|
23
|
+
Dynamic: summary
|
24
|
+
|
25
|
+
## Setup myfeng
|
26
|
+
pip install dajidali
|
27
|
+
|
28
|
+
## Over HaHa!
|
dajidali-9.1.0/README.md
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: dajidali
|
3
|
+
Version: 9.1.0
|
4
|
+
Summary: A brief description of your library
|
5
|
+
Home-page: https://github.com/feng/myfeng
|
6
|
+
Author: hhsdn
|
7
|
+
Author-email: empiresoft@qq.com
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
10
|
+
Classifier: Operating System :: OS Independent
|
11
|
+
Requires-Python: >=3.6
|
12
|
+
Description-Content-Type: text/markdown
|
13
|
+
License-File: LICENSE
|
14
|
+
Requires-Dist: numpy>=1.18.0
|
15
|
+
Dynamic: author
|
16
|
+
Dynamic: author-email
|
17
|
+
Dynamic: classifier
|
18
|
+
Dynamic: description
|
19
|
+
Dynamic: description-content-type
|
20
|
+
Dynamic: home-page
|
21
|
+
Dynamic: requires-dist
|
22
|
+
Dynamic: requires-python
|
23
|
+
Dynamic: summary
|
24
|
+
|
25
|
+
## Setup myfeng
|
26
|
+
pip install dajidali
|
27
|
+
|
28
|
+
## Over HaHa!
|
@@ -0,0 +1,11 @@
|
|
1
|
+
LICENSE
|
2
|
+
README.md
|
3
|
+
setup.py
|
4
|
+
dajidali/__init__.py
|
5
|
+
dajidali/core.py
|
6
|
+
dajidali.egg-info/PKG-INFO
|
7
|
+
dajidali.egg-info/SOURCES.txt
|
8
|
+
dajidali.egg-info/dependency_links.txt
|
9
|
+
dajidali.egg-info/requires.txt
|
10
|
+
dajidali.egg-info/top_level.txt
|
11
|
+
tests/test_core.py
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
numpy>=1.18.0
|
@@ -0,0 +1 @@
|
|
1
|
+
dajidali
|
dajidali-9.1.0/setup.cfg
ADDED
dajidali-9.1.0/setup.py
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
from setuptools import setup, find_packages
|
2
|
+
|
3
|
+
setup(
|
4
|
+
name='dajidali',
|
5
|
+
version='9.1.0',
|
6
|
+
packages=find_packages(),
|
7
|
+
install_requires=[
|
8
|
+
'numpy>=1.18.0',
|
9
|
+
],
|
10
|
+
author='hhsdn',
|
11
|
+
author_email='empiresoft@qq.com',
|
12
|
+
description='A brief description of your library',
|
13
|
+
long_description=open('README.md').read(),
|
14
|
+
long_description_content_type='text/markdown',
|
15
|
+
url='https://github.com/feng/myfeng', # 你的项目主页
|
16
|
+
classifiers=[
|
17
|
+
'Programming Language :: Python :: 3',
|
18
|
+
'License :: OSI Approved :: MIT License',
|
19
|
+
'Operating System :: OS Independent',
|
20
|
+
],
|
21
|
+
python_requires='>=3.6',
|
22
|
+
)
|
File without changes
|