-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 802 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (23 loc) · 802 Bytes
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
from setuptools import setup, find_packages
setup(
name='NumberGenerate',
version='0.1.3',
description='CN-NumberGenerate',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='42',
author_email='1666671111@qq.com',
url='https://github.com/FourTwooo/NumberGenerate',
packages=find_packages(), # 这行会自动找出NumberGenerate作为包
include_package_data=True, # 启用包括包数据
package_data={
'': ['*.db'], # 包含所有包中的 .db 文件
},
install_requires=open('requirements.txt').read().splitlines(),
classifiers=[
'Programming Language :: Python :: 3',
],
python_requires='>=3.6',
)
# python setup.py sdist bdist_wheel
# twine upload dist/*