setup.py 598 B

1234567891011121314151617181920212223
  1. import setuptools
  2. with open("README.md", "r") as fh:
  3. long_description = fh.read()
  4. setuptools.setup(
  5. name="a2s",
  6. version="0.0.1",
  7. author="LJL",
  8. author_email="author@example.com",
  9. description="A small example package",
  10. long_description=long_description,
  11. long_description_content_type="text/markdown",
  12. url="http://ai-01:8080/",
  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. install_requires=[]
  20. )