Skip to content

Commit

Permalink
Add some boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskuehl committed Jan 24, 2017
1 parent c077e70 commit 7fd8926
Show file tree
Hide file tree
Showing 7 changed files with 480 additions and 0 deletions.
1 change: 1 addition & 0 deletions .activate.sh
1 change: 1 addition & 0 deletions .deactivate.sh
@@ -0,0 +1 @@
deactivate
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
*.py[co]
/venv
5 changes: 5 additions & 0 deletions Makefile
@@ -0,0 +1,5 @@
.PHONY: minimal
minimal: venv

venv: vendor/venv-update
vendor/venv-update venv= -ppython3 venv install= -rrequirements-dev.txt -e .
2 changes: 2 additions & 0 deletions requirements-dev.txt
@@ -0,0 +1,2 @@
pre-commit
pytest
21 changes: 21 additions & 0 deletions setup.py
@@ -0,0 +1,21 @@
from setuptools import find_packages
from setuptools import setup


setup(
name='dumb-pypi',
version='0.0.0',
author='Chris Kuehl',
author_email='ckuehl@ocf.berkeley.edu',
py_modules=('dumb_pypi',),
classifiers={
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
},
entry_points={
'console_scripts': (
'dumb-pypi = dumb_pypi.main',
),
},
)

0 comments on commit 7fd8926

Please sign in to comment.