-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
54 lines (48 loc) · 1.69 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# coding=utf-8
from setuptools import setup, find_packages
filepath = 'README.md'
print(filepath)
setup(
name='kuai_log', #
version="0.8",
description=(
"kuai_log is most fast python log"
),
keywords=['logging', 'log', 'logger', 'loguru', 'nb_log', 'rotate file'],
# long_description=open('README.md', 'r',encoding='utf8').read(),
long_description_content_type="text/markdown",
long_description=open(filepath, 'r', encoding='utf8').read(),
# data_files=[filepath],
author='bfzs',
author_email='ydf0509@sohu.com',
maintainer='ydf',
maintainer_email='ydf0509@sohu.com',
license='BSD License',
packages=find_packages(),
include_package_data=True,
platforms=["all"],
url='https://github.com/ydf0509/kuai_log',
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: Libraries'
],
install_requires=['tzlocal', ]
)
"""
打包上传
python setup.py sdist upload -r pypi
python setup.py sdist & python -m twine upload dist/kuai_log-0.8.tar.gz
python -m pip install kuai_log --upgrade -i https://pypi.org/simple
"""