mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2025-01-22 21:37:18 +01:00
14 lines
412 B
Python
14 lines
412 B
Python
#!/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'],
|
|
)
|