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.
13 lines
412 B
13 lines
412 B
#!/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'], |
|
)
|
|
|