neverlib 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.
- neverlib-0.0.1/PKG-INFO +8 -0
- neverlib-0.0.1/neverlib.egg-info/PKG-INFO +8 -0
- neverlib-0.0.1/neverlib.egg-info/SOURCES.txt +5 -0
- neverlib-0.0.1/neverlib.egg-info/dependency_links.txt +1 -0
- neverlib-0.0.1/neverlib.egg-info/top_level.txt +1 -0
- neverlib-0.0.1/setup.cfg +4 -0
- neverlib-0.0.1/setup.py +21 -0
neverlib-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
neverlib-0.0.1/setup.cfg
ADDED
neverlib-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# -*- coding:utf-8 -*-
|
|
2
|
+
# Author:凌逆战 | Never
|
|
3
|
+
# Date: 2024/5/17
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from setuptools import setup, find_packages #这个包没有的可以pip一下
|
|
9
|
+
|
|
10
|
+
setup(
|
|
11
|
+
name = "neverlib", #这里是pip项目发布的名称
|
|
12
|
+
version = "0.0.1", #版本号,数值大的会优先被pip
|
|
13
|
+
author = "Never.Ling",
|
|
14
|
+
author_email = "1786088386@qq.com",
|
|
15
|
+
url = "https://www.cnblogs.com/LXP-Never", #项目相关文件地址,一般是github
|
|
16
|
+
description = "A successful sign for python setup",
|
|
17
|
+
|
|
18
|
+
packages = find_packages(),
|
|
19
|
+
platforms = "any",
|
|
20
|
+
install_requires = [] #这个项目需要的第三方库
|
|
21
|
+
)
|