13 lines
391 B
Python
13 lines
391 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name = 'infomentor',
|
|
version = '1.0.0',
|
|
url = 'https://github.com/mypackage.git',
|
|
author = 'Matthias Bilger',
|
|
author_email = 'matthias@bilger.info',
|
|
description = 'grab infomentor news and push them',
|
|
packages = find_packages(),
|
|
install_requires = ['pycrypt', 'requests'],
|
|
)
|