forked from daremon/urlclustering
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (29 loc) · 1 KB
/
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
def read(filename):
with open(filename) as f:
return f.read()
setup(
name="urlclustering",
version="0.4.1",
author="Dimitris Giannitsaros",
author_email="[email protected]",
description="Facilitate clustering of similar URLs of a website",
long_description=read("README.rst"),
license="MIT",
keywords="cluster clustering urls",
url="https://github.com/daremon/urlclustering",
packages=['urlclustering'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)