You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
412 B
14 lines
412 B
8 years ago
|
#!/usr/bin/env python
|
||
|
from setuptools import setup
|
||
|
|
||
|
setup(name = 'baddiedetector',
|
||
8 years ago
|
version = '0.1',
|
||
|
description = 'i2p netdb blocklist tool',
|
||
8 years ago
|
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'],
|
||
|
)
|