You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
366 B
Python
12 lines
366 B
Python
from setuptools import setup
|
|
|
|
setup(name='resolv',
|
|
version='1.1.0',
|
|
description='Module for resolving URLs from filehosters, video hosters, and other content hosters',
|
|
author='Sven Slootweg',
|
|
author_email='resolv@cryto.net',
|
|
url='http://cryto.net/resolv',
|
|
packages=['resolv', 'resolv.resolvers'],
|
|
provides=['resolv']
|
|
)
|