setup.py 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. #!/usr/bin/env python3
  2. ############################################
  3. # _ ___ #
  4. # _ _ __ (_) |_ ) #
  5. # | ' \ / _| | | / / #
  6. # |_||_| \__| |_| /___| #
  7. # #
  8. ############################################
  9. # nci2: blog web script for neocities. it's#
  10. # is an improved version of the old nci #
  11. # web script by nokoru <nokoru@disroot.org>#
  12. # #
  13. # license: unlicense #
  14. ############################################
  15. from setuptools import setup
  16. setup(
  17. name = "nci2",
  18. description = "A CLI application and blog/static site generator for neocities.",
  19. version = "2.0.6",
  20. author = "nokoru",
  21. author_email = "nokoru@disroot.org",
  22. url = "https://codeberg.org/nokoru/nci2",
  23. packages = ["nci2"],
  24. entry_points = {
  25. "console_scripts": [
  26. "nci = nci2.__main__:main"
  27. ]
  28. },
  29. license = "Unlicense",
  30. install_requires = ["markdown", "sortedcontainers"],
  31. python_requires = ">=3.0",
  32. )