mirror of
https://github.com/d0zingcat/RSSHub-python.git
synced 2026-06-09 15:10:40 +00:00
12 lines
240 B
Python
12 lines
240 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='your_package_name',
|
|
version='0.1',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
# List your package dependencies here
|
|
],
|
|
python_requires='==3.8.*',
|
|
)
|