-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (31 loc) · 896 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup
setup(
name='html_cluster',
version='0.1',
url='https://github.com/matiskay/html-cluster',
description='A command line tool to cluster html files',
long_description='',
author='Edgar Marca',
author_email='[email protected]',
maintainer='Edgar Marca',
maintainer_email='[email protected]',
license='BSD',
entry_points={
'console_scripts': ['html-cluster = html_cluster.tool:cli']
},
include_package_data=True,
zip_safe=False,
install_requires=[
'requests',
'click',
'html-similarity',
],
classifiers=[
'License :: OSI Approved :: BSD License',
'Environment :: Console',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Environment :: Console',
'Topic :: Internet :: WWW/HTTP',
],
)