12345678910111213141516171819202122232425262728293031323334 |
- #!/usr/bin/env python3
- ############################################
- # _ ___ #
- # _ _ __ (_) |_ ) #
- # | ' \ / _| | | / / #
- # |_||_| \__| |_| /___| #
- # #
- ############################################
- # nci2: blog web script for neocities. it's#
- # is an improved version of the old nci #
- # web script by nokoru <nokoru@disroot.org>#
- # #
- # license: unlicense #
- ############################################
- from setuptools import setup
- setup(
- name = "nci2",
- description = "A CLI application and blog/static site generator for neocities.",
- version = "2.0.6",
- author = "nokoru",
- author_email = "nokoru@disroot.org",
- url = "https://codeberg.org/nokoru/nci2",
- packages = ["nci2"],
- entry_points = {
- "console_scripts": [
- "nci = nci2.__main__:main"
- ]
- },
- license = "Unlicense",
- install_requires = ["markdown", "sortedcontainers"],
- python_requires = ">=3.0",
- )
|