setup.py
Python script, ASCII text executable
1from setuptools import setup, find_packages 2 3setup( 4name="ampoule-ssg", 5version="0.0.0", 6author="Roundabout developers", 7author_email="root@roundabout-host.com", 8description="A simple yet flexible static site generator based on Jinja2", 9long_description=open("README.md").read(), 10long_description_content_type="text/markdown", 11url="https://roundabout-host.com/roundabout/ampoule", 12packages=find_packages(), 13install_requires=["Jinja2", "ruamel.yaml", "beautifulsoup4"], 14classifiers=[ 15"Development Status :: 2 - Pre-Alpha", 16"Intended Audience :: Developers", 17"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", 18"Programming Language :: Python :: 3", 19"Programming Language :: Python :: 3.10", 20], 21) 22