16 lines
379 B
Python
16 lines
379 B
Python
# setup.py
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='takway',
|
|
version='1.0',
|
|
packages=find_packages(), # 自动发现包和子包
|
|
url='https://github.com/takway/TakwayBoard',
|
|
classifiers=[
|
|
'Programming Language :: Python :: 3',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Operating System :: OS Independent',
|
|
],
|
|
)
|