This repository has been archived by the owner on Aug 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
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
1 parent
6bb55ac
commit 853304c
Showing
11 changed files
with
25 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
all: clean build publish | ||
|
||
build: | ||
python setup.py sdist bdist_wheel | ||
flit build | ||
|
||
clean: | ||
rm -rf build dist my_project.egg-info | ||
rm -rf dist | ||
rm -rf build | ||
|
||
publish: build | ||
twine upload dist/* | ||
flit publish | ||
|
||
.PHONY: build clean publish all | ||
.PHONY: build clean publish all |
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,6 +1,10 @@ | ||
[build-system] | ||
build-backend = "flit_core.buildapi" | ||
requires = ["flit_core >=3.8.0,<4"] | ||
|
||
[project] | ||
name = "cil" | ||
description = "CIL: Code Indexer Loop" | ||
name = "code-indexer-loop" | ||
description = "Code Indexer Loop" | ||
authors = [ | ||
{name = "Rick Lamers", email = "[email protected]"} | ||
] | ||
|
@@ -27,9 +31,7 @@ dev = [ | |
"autoflake ~=2.2.0", | ||
"ruff ~=0.0.284", | ||
"pytest ~=7.4.1", | ||
"twine ~=4.0.2", | ||
"setuptools", | ||
"wheel", | ||
"flit >=3.8.0,<4", | ||
] | ||
test = [ | ||
"pytest-cov ~=3.0.0", | ||
|