Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Copyright 2020 Josh Waller

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.md LICENSE
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ verify_ssl = true
[dev-packages]
livereload = "==2.6.1"
pylint = "==2.3.1"
twine = "*"

[packages]
astroid = "==2.2.5"
Expand Down
123 changes: 122 additions & 1 deletion Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions fastic/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .fastic import *
3 changes: 3 additions & 0 deletions fastic/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
VERSION = (1, 0, 0)

__version__ = '.'.join(map(str, VERSION))
48 changes: 48 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import pathlib
from setuptools import setup, find_packages

ROOT_DIR = pathlib.Path(__file__).parent
README = (ROOT_DIR / "README.md").read_text()

# Package meta-data.
NAME = 'fastic'
DESCRIPTION = 'Flask static site generator with perks'
URL = 'https://github.com/mdxprograms/fastic'
EMAIL = 'mdxprograms@gmail.com'
AUTHOR = 'Josh Waller'
REQUIRES_PYTHON = '>=3.7.0'
VERSION = '1.0.0'

# required packages
REQUIRED = [
"astroid", "click", "dukpy", "htmlmin", "isort", "itsdangerous",
"lazy-object-proxy", "libsass", "mccabe", "ply", "python-dotenv", "six",
"slimit", "tornado", "typed-ast", "wrapt", "Flask", "Flask-FlatPages",
"Frozen-Flask", "Jinja2", "Markdown", "MarkupSafe", "PyYAML", "Werkzeug"
]

setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=README,
long_description_content_type="text/markdown",
url=URL,
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
"Programming Language :: Python :: 3.7",
'Programming Language :: Python :: Implementation :: PyPy'
],
packages=find_packages(
exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
include_package_data=True,
install_requires=REQUIRED,
)