setup.py 855 B

123456789101112131415161718192021222324252627282930313233343536
  1. import os
  2. from setuptools import setup
  3. def read(fname):
  4. with open(os.path.join(os.path.dirname(__file__), fname)) as buf:
  5. return buf.read()
  6. setup(
  7. name="marxbook",
  8. version="0.0.1",
  9. description="A flat-file bookmark manager",
  10. long_description=read("README.md"),
  11. long_description_content_type="text/markdown",
  12. author="boyska",
  13. author_email="piuttosto@logorroici.org",
  14. license="AGPL",
  15. packages=["marxbook"],
  16. install_requires=[
  17. "beautifulsoup4==4.7.1",
  18. ],
  19. python_requires=">=3.5",
  20. zip_safe=True,
  21. include_package_data=False,
  22. entry_points={
  23. "console_scripts": [
  24. "mxb=marxbook.cli:main",
  25. ],
  26. },
  27. classifiers=[
  28. "License :: OSI Approved :: GNU Affero General Public License v3",
  29. "Programming Language :: Python :: 3.5",
  30. ],
  31. )