-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
92 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import pathlib | ||
|
||
import setuptools | ||
|
||
# The directory containing this file | ||
|
@@ -7,51 +8,52 @@ | |
# The text of the README file | ||
README = (HERE / "README.md").read_text() | ||
|
||
setuptools.setup(name='barely', | ||
version='1.2.0', | ||
description='barely is a lightweight, but highly extensible static site generator written in pure python.', | ||
long_description=README, | ||
long_description_content_type="text/markdown", | ||
keywords=['static site generator', 'jinja2', 'markdown', 'web development', 'blog'], | ||
url='https://notablog.io', | ||
download_url='https://github.com/charludo/barely/archive/refs/tags/v1.2.0.tar.gz', | ||
author='Charlotte Hartmann Paludo', | ||
author_email='[email protected]', | ||
license='GPL-3.0', | ||
packages=setuptools.find_packages(), | ||
include_package_data=True, | ||
zip_safe=False, | ||
entry_points={"console_scripts": ["barely = barely.cli:run"]}, | ||
python_requires=">=3.9.0", | ||
install_requires=[ | ||
"click>=8.0.0", | ||
"click-default-group>=1.2.2", | ||
"coloredlogs>=15.0.0", | ||
"mock>=4.0.0", | ||
"pyyaml>=5.3.0", | ||
"watchdog>=2.0.0", | ||
"pillow>=8.0.0", | ||
"GitPython>=3.0.0", | ||
"pygments>=2.5.0", | ||
"libsass>=0.21.0", | ||
"pysftp>=0.2.5", | ||
"livereload>=2.5.0", | ||
"binaryornot>=0.4.0", | ||
"jinja2>=3.0.0", | ||
"mistune==2.0.0rc1", | ||
"calmjs>=3.3.0" | ||
], | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'Topic :: Text Processing :: Markup :: HTML', | ||
'Topic :: Text Processing :: General', | ||
'Topic :: Software Development :: Build Tools', | ||
'Topic :: Software Development', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3.9', | ||
'Environment :: Console', | ||
'Operating System :: OS Independent' | ||
] | ||
) | ||
setuptools.setup( | ||
name="barely", | ||
version="1.2.1", | ||
description="barely is a lightweight, but highly extensible static site generator written in pure python.", | ||
long_description=README, | ||
long_description_content_type="text/markdown", | ||
keywords=["static site generator", "jinja2", "markdown", "web development", "blog"], | ||
url="https://notablog.io", | ||
download_url="https://github.com/charludo/barely/archive/refs/tags/v1.2.1.tar.gz", | ||
author="Charlotte Hartmann Paludo", | ||
author_email="[email protected]", | ||
license="GPL-3.0", | ||
packages=setuptools.find_packages(), | ||
include_package_data=True, | ||
zip_safe=False, | ||
entry_points={"console_scripts": ["barely = barely.cli:run"]}, | ||
python_requires=">=3.9.0", | ||
install_requires=[ | ||
"click>=8.0.0", | ||
"click-default-group>=1.2.2", | ||
"coloredlogs>=15.0.0", | ||
"mock>=4.0.0", | ||
"pyyaml>=5.3.0", | ||
"watchdog>=2.0.0", | ||
"pillow>=8.0.0", | ||
"GitPython>=3.0.0", | ||
"pygments>=2.5.0", | ||
"libsass>=0.21.0", | ||
"pysftp>=0.2.5", | ||
"livereload>=2.5.0", | ||
"binaryornot>=0.4.0", | ||
"jinja2>=3.0.0", | ||
"mistune>=2.0.0rc1", | ||
"calmjs>=3.3.0", | ||
], | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Topic :: Text Processing :: Markup :: HTML", | ||
"Topic :: Text Processing :: General", | ||
"Topic :: Software Development :: Build Tools", | ||
"Topic :: Software Development", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3.9", | ||
"Environment :: Console", | ||
"Operating System :: OS Independent", | ||
], | ||
) |