By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 setup.py

View raw Download
text/x-script.python • 811 B
Python script, ASCII text executable
        
            
1
from setuptools import setup, find_packages
2
3
setup(
4
name="ampoule-ssg",
5
version="0.0.0",
6
author="Roundabout developers",
7
author_email="root@roundabout-host.com",
8
description="A simple yet flexible static site generator based on Jinja2",
9
long_description=open("README.md").read(),
10
long_description_content_type="text/markdown",
11
url="https://roundabout-host.com/roundabout/ampoule",
12
packages=find_packages(),
13
install_requires=["Jinja2", "ruamel.yaml", "beautifulsoup4", "colorama"],
14
classifiers=[
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