-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 695 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from setuptools import setup
setup(
name="url-normalizer",
version="0.0.1",
author="Tarashish Mishra",
author_email="sunu@sunu.in",
description="Normalize URLs. Mostly useful for deduplicating HTTP URLs.",
long_description="",
license="MIT",
url="https://github.com/sunu/url-normalizer",
packages=['normalizer'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)