Skip to content

Commit d74ca50

Browse files
committed
added setup.py
Signed-off-by: Zen <[email protected]>
1 parent 87a62f9 commit d74ca50

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
__pycache__/*
44
dist/*
55
*.pyc
6+
src/build/*
67
build/*
78
*.egg-info/

src/setup.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from setuptools import setup
2+
from zenlib import __version__ as version
3+
4+
5+
setup(
6+
name="zenlib",
7+
version=version,
8+
description="Useful python decorators and functions",
9+
author="desultory"
10+
)

0 commit comments

Comments
 (0)