This commit is contained in:
Jeff Becker 2016-11-24 08:35:47 -05:00
parent 08779e3f89
commit e5c253bd5e
18 changed files with 9 additions and 0 deletions

13
baddiefinder/setup.py Normal file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env python
from setuptools import setup
setup(name = 'baddiedetector',
version = '0.1',
description = 'i2p netdb blocklist tool',
author = 'Jeff Becker',
author_email = 'ampernand@gmail.com',
install_requires = ['python-geoip','python-geoip-geolite2'],
tests_require=['pytest'],
url = 'https://github.com/purplei2p/i2pd-tools',
packages = ['netdb', 'baddiefinder'],
)