-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 714 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import io
from setuptools import setup, find_packages
from os import path
pwd = path.abspath(path.dirname(__file__))
with io.open(path.join(pwd, 'README.md'), encoding='utf-8') as readme:
desc = readme.read()
setup(
name='qsreplace',
version='0.0.4.post1',
description='A utility to replace query parameters in URLs',
long_description=desc,
long_description_content_type='text/markdown',
author='basedygt',
license='Apache-2.0 License',
author_email='basedygt@gmail.com',
url='https://github.com/basedygt/qsreplace',
packages=find_packages(),
py_modules=['qsreplace'],
keywords=['qsreplace', 'url editor', 'params editor'],
install_requires=['urllib3'],
)