当代数据库管理系统课程实验二
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
637 B

  1. import setuptools
  2. with open("README.md", "r") as fh:
  3. long_description = fh.read()
  4. setuptools.setup(
  5. name="bookstore",
  6. version="0.0.1",
  7. author="DaSE-DBMS",
  8. author_email="DaSE-DBMS@DaSE-DBMS.com",
  9. description="Buy Books Online",
  10. long_description=long_description,
  11. long_description_content_type="text/markdown",
  12. url="https://github.com/DaSE-DBMS/bookstore.git",
  13. packages=setuptools.find_packages(),
  14. classifiers=[
  15. "Programming Language :: Python :: 3",
  16. "License :: OSI Approved :: MIT License",
  17. "Operating System :: OS Independent",
  18. ],
  19. python_requires=">=3.6",
  20. )