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
346 B
Python
16 lines
346 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='utilities',
|
|
version='0.1',
|
|
description='Some utility-scripts for python.',
|
|
url='https://github.com/trivernis/python-utility-scripts',
|
|
author='trivernis',
|
|
license='GPLv3',
|
|
packages=['utilities'],
|
|
install_requires=[
|
|
'bs4',
|
|
'lxml'
|
|
],
|
|
zip_safe=False)
|