Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
|
53c3025856 | |
|
359d29ca68 |
|
@ -1,4 +1,4 @@
|
||||||
name: Gitea Actions For Tree-Structurer
|
name: Gitea Actions For prodir
|
||||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
|
|
|
@ -8,3 +8,9 @@ version = "1.0.0"
|
||||||
description = "A module for analyzing and creating directory structures"
|
description = "A module for analyzing and creating directory structures"
|
||||||
scripts = {prodir = "prodir.__main__:main"}
|
scripts = {prodir = "prodir.__main__:main"}
|
||||||
dependencies = []
|
dependencies = []
|
||||||
|
|
||||||
|
license = {text = "Creative Commons Attribution 4.0 International"}
|
||||||
|
|
||||||
|
authors = [
|
||||||
|
{ name="Falko Habel", email="falko.habel@fabelous.app" }
|
||||||
|
]
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -20,7 +20,7 @@ tree_structurer_module = Extension(
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='prodir',
|
name='prodir',
|
||||||
version='0.1.0',
|
version='1.0.0',
|
||||||
description='A module for analyzing directory structures',
|
description='A module for analyzing directory structures',
|
||||||
ext_modules=[tree_structurer_module],
|
ext_modules=[tree_structurer_module],
|
||||||
packages=find_packages(where="src"),
|
packages=find_packages(where="src"),
|
||||||
|
|
Loading…
Reference in New Issue