X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=setup.py;h=6677431f4b641fe740fa143971578f23aeb27e5f;hb=d360b6cedd5c9527d8a5be8c14f48f2f5f926a6f;hp=a1c881f91e3841de3ceaaf6c8436208880db29ae;hpb=bb9811987721c5443ec1b8f23a3bc47ac1604823;p=sid.git diff --git a/setup.py b/setup.py index a1c881f..6677431 100755 --- a/setup.py +++ b/setup.py @@ -1,22 +1,16 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- -from setuptools import setup, find_packages +from setuptools import setup -from sid import __version__, __url__, __author__, __email__ +from sid import __url__, __author__, __email__, __description__ setup( name='sid', - author = __author__, - author_email = __email__, - version=__version__, + author=__author__, + author_email=__email__, download_url=__url__, - packages=find_packages(), - install_requires=['sleekxmpp>=1.3.0'], - description="An xmpp bot based on sleekxmpp", - license='GPL-3', - keywords = "xmpp bot", - + description=__description__, ) # VIM MODLINE