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.

16 lines
372 B
Python

from setuptools import setup
setup(
name='python-utility-scripts',
version='0.1',
description='Some utility-scripts for python.',
url='https://github.com/trivernis/python-utility-scripts',
author='trivernis',
license='GPLv3',
packages=['python-utility-scripts'],
install_requires=[
'bs4',
'lxml'
],
zip_safe=False)