-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
27 lines (25 loc) · 838 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
from setuptools import setup, find_packages
setup(
name='html-similarity',
version='0.3.3',
url='https://github.com/matiskay/html-similarity',
description='A set of similarity metricts to compare html files.',
long_description=open('README.rst').read(),
include_package_data=True,
author='Edgar Marca',
author_email='[email protected]',
maintainer='Edgar Marca',
maintainer_email='[email protected]',
license='BSD',
packages=find_packages(exclude=('tests', 'tests.*')),
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'parsel==1.6.0',
],
)