setup.py 674 B

12345678910111213141516171819202122
  1. from setuptools import setup, find_packages
  2. setup(
  3. name="erc20_lead_mexc",
  4. version="0.1.0",
  5. packages=find_packages(),
  6. install_requires=[
  7. # 在这里添加项目依赖
  8. ],
  9. author="Your Name",
  10. author_email="your.email@example.com",
  11. description="ERC20代币交易和分析工具包",
  12. keywords="erc20, cryptocurrency, trading, analysis",
  13. url="https://github.com/yourusername/erc20_lead_mexc",
  14. classifiers=[
  15. "Development Status :: 3 - Alpha",
  16. "Intended Audience :: Developers",
  17. "Programming Language :: Python :: 3",
  18. "Programming Language :: Python :: 3.8",
  19. ],
  20. python_requires=">=3.8",
  21. )