Skip to content

Commit

Permalink
Add setup.py and tox
Browse files Browse the repository at this point in the history
  • Loading branch information
cdunklau committed Dec 31, 2019
1 parent 8804519 commit c3f9925
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
*.py[co]
venv/
.tox/
*.egg-info
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from setuptools import setup

setup(
name='gistit',
version='0.1.0-dev',
author='Colin Dunklau',
author_email='[email protected]',
py_modules=['gistit'],
install_requires=['requests >=2.0,<3.0'],
)
6 changes: 6 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[tox]
envlist = py27,py36,py37

[testenv]
commands =
{envpython} -m unittest gistit

0 comments on commit c3f9925

Please sign in to comment.