-
Notifications
You must be signed in to change notification settings - Fork 1
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
7 changed files
with
102 additions
and
93 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,7 @@ | |
/*.iml | ||
/.idea/ | ||
/.tox/ | ||
/build/ | ||
/conscript.egg-info/ | ||
/dist/ | ||
__pycache__/ |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include CHANGES.md | ||
|
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,8 +1,3 @@ | ||
"""Conscript console scripts in your own Swiss Army Knife. | ||
A Python BusyBox console script. | ||
""" # N.B.: Flit uses this as our distribution description. | ||
|
||
from __future__ import absolute_import | ||
|
||
__version__ = "0.1.7" # N.B.: Flit uses this as out distribution version. | ||
__version__ = "0.1.7" # N.B.: Setuptools is configured to use this as our distribution version. |
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,48 +1,52 @@ | ||
[build-system] | ||
requires = ["flit_core>=2,<4"] | ||
build-backend = "flit_core.buildapi" | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.flit.metadata] | ||
module = "conscript" | ||
author = "John Sirois" | ||
author-email = "[email protected]" | ||
home-page = "https://github.com/jsirois/conscript" | ||
description-file = "README.md" | ||
[project] | ||
name = "conscript" | ||
authors = [ | ||
{name = "John Sirois", email = "[email protected]"}, | ||
] | ||
description = "Conscript console scripts in your own Swiss Army Knife." | ||
readme = "README.md" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Topic :: Utilities", | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Programming Language :: Python :: 3.14", | ||
"Topic :: Utilities", | ||
] | ||
requires-python = ">=2.7,<3.14,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*" | ||
requires = [ | ||
"setuptools; python_version <= '3.5'", | ||
"importlib-metadata; python_version == '3.6' or python_version == '3.7'", | ||
requires-python = ">=2.7,<3.15,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*" | ||
dependencies = [ | ||
"setuptools; python_version <= '3.5'", | ||
"importlib-metadata; python_version == '3.6' or python_version == '3.7'", | ||
] | ||
dynamic = ["version"] | ||
|
||
[tool.flit.scripts] | ||
[project.scripts] | ||
conscript = "conscript.main:main" | ||
|
||
[tool.flit.sdist] | ||
include = ["CHANGES.md"] | ||
|
||
[tool.flit.metadata.urls] | ||
[project.urls] | ||
Homepage = "https://github.com/jsirois/conscript" | ||
Changelog = "https://github.com/jsirois/conscript/blob/main/CHANGES.md" | ||
Documentation = "https://github.com/jsirois/conscript/blob/main/README.md" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "conscript.__version__"} | ||
|
||
[tool.black] | ||
line-length = 100 | ||
target-version = ["py27"] | ||
|
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