Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
9
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
Sean Breckenridge
full_todotxt
Commits
db361e6c
Commit
db361e6c
authored
May 12, 2020
by
Sean Breckenridge
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
publish to pypi
parent
da1179cf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
52 additions
and
1 deletion
+52
-1
MANIFEST.in
MANIFEST.in
+1
-0
Makefile
Makefile
+48
-0
README.md
README.md
+3
-1
No files found.
MANIFEST.in
View file @
db361e6c
include LICENSE
include README.md
exclude Makefile
recursive-exclude .github
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
Makefile
0 → 100644
View file @
db361e6c
.DEFAULT_GOAL
:=
help
define
PRINT_HELP_PYSCRIPT
import
re,
sys
for line in sys.stdin
:
match
=
re.match
(
r
'^([a-zA-Z_-]+):.*?## (.*)$$'
, line
)
if
match:
target,
help
=
match.groups
()
print
(
"%-20s %s"
%
(
target,
help
))
endef
export
PRINT_HELP_PYSCRIPT
BROWSER
:=
python
-c
"
$$
BROWSER_PYSCRIPT"
help
:
@
python
-c
"
$$
PRINT_HELP_PYSCRIPT"
<
$(MAKEFILE_LIST)
clean
:
clean-build clean-pyc
##
remove all build Python artifacts
clean-build
:
##
remove build artifacts
rm
-fr
build/
rm
-fr
dist/
rm
-fr
.eggs/
clean-pyc
:
##
remove Python file artifacts
find
.
-name
'*.pyc'
-exec
rm
-f
{}
+
find
.
-name
'*.pyo'
-exec
rm
-f
{}
+
find
.
-name
'*~'
-exec
rm
-f
{}
+
find
.
-name
'__pycache__'
-exec
rm
-fr
{}
+
dist
:
clean
##
builds source and wheel package
python setup.py sdist
#python setup.py bdist_wheel
ls
-l
dist
install
:
clean
##
install the package to the active Python's site-packages
pip
install
--user
.
uninstall
:
##
uninstalls the package from the pipenv
pip3 uninstall
-y
full_todotxt
reinstall
:
uninstall install
##
uninsalls
,
then installs
upload-twine
:
##
uploads to twine
,
put credentails in ~/.pypirc
twine upload
-r
pypi dist/
*
README.md
View file @
db361e6c
full-todotxt
======
[

](https://pypi.python.org/pypi/full_todotxt)
[

](https://pypi.python.org/pypi/full_todotxt)
[
todotxt
](
http://todotxt.org/
)
interactive interface that forces you to specify certain attributes.
<img
src=
"https://raw.githubusercontent.com/seanbreckenridge/full_todotxt/master/.github/demo.gif"
alt=
"demo gif"
>
...
...
@@ -28,7 +30,7 @@ Installation
To install with pip, run:
pip3 install full
_
todotxt
pip3 install full
-
todotxt
Run
----------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment