Skip to content

Commit b1b5a3c

Browse files
committed
add a setup.py
1 parent d0a4e86 commit b1b5a3c

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

Diff for: MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include *.md

Diff for: setup.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/python
2+
3+
from setuptools import setup
4+
5+
6+
setup(
7+
name="asserts",
8+
version="0.1",
9+
description="Rich Assertions",
10+
author="Sebastian Rittau",
11+
author_email="[email protected]",
12+
url="https://github.com/srittau/python-asserts",
13+
py_modules=["asserts", "test_asserts"],
14+
)

0 commit comments

Comments
 (0)