mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2025-03-11 03:48:28 +01:00
14 lines
408 B
Python
14 lines
408 B
Python
|
#!/usr/bin/env python
|
||
|
from setuptools import setup
|
||
|
|
||
|
setup(name = 'baddiedetector',
|
||
|
version = '0.0',
|
||
|
description = 'i2p netdb blocklist ',
|
||
|
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'],
|
||
|
)
|