This commit is contained in:
2023-11-20 16:20:42 +08:00
committed by GitHub
parent e1aa159c73
commit fa64880ab6
7 changed files with 2 additions and 1 deletions

View File

@@ -1,12 +1,13 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
setup( setup(
name='stats-helper', name='stats_helper',
version='0.1.0', version='0.1.0',
author='Yinr', author='Yinr',
description='Stats helper by Yinr', description='Stats helper by Yinr',
packages=find_packages(), packages=find_packages(),
install_requires=[ install_requires=[
'pandas', 'pandas',
'openpyxl',
], ],
) )