Add tests and support for blacklisting IPs
[nip.io] / setup.py
1 # from distutils.core import setup
2 from setuptools import setup
3
4 setup(name="nip.io",
5       version="1.0",
6       packages=["nipio"],
7       tests_require=["mock", "assertpy"],
8       test_suite="nipio_tests",
9       )