Permalink
Browse files
Add missing setup.py example
- Loading branch information...
Showing
with
8 additions
and
1 deletion.
-
+0
−1
.gitignore
-
+8
−0
examples/setup.py
|
@@ -3,7 +3,6 @@ build |
|
|
*.pyc
|
|
|
*.egg-info
|
|
|
__pycache__
|
|
|
-setup.py
|
|
|
.tox
|
|
|
htmlcov
|
|
|
.cache
|
|
|
|
|
@@ -0,0 +1,8 @@ |
|
|
+#!/usr/bin/env python
|
|
|
+from setuptools import setup
|
|
|
+from requirements import r
|
|
|
+
|
|
|
+setup(
|
|
|
+ name='example',
|
|
|
+ version='0.0.1',
|
|
|
+ **r.requirements)
|
0 comments on commit
5d32f45