forked from jehiah/urlnorm
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 833 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
# also update in urlnorm.py
version = '1.1.2+pinterest6'
setup(name='urlnorm',
version=version,
long_description=open("./README.txt", "r").read(),
description="Normalize a URL to a standard unicode encoding",
py_modules=['urlnorm'],
license='MIT License',
install_requires=['six'],
author='Jehiah Czebotar',
author_email='jehiah@gmail.com',
url='http://github.com/jehiah/urlnorm',
download_url="http://github.com/downloads/jehiah/urlnorm/urlnorm-%s.tar.gz" % version,
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)