forked from shon/httpagentparser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 627 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (18 loc) · 627 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
setup(
name='httpagentparser',
version='1.1.3',
url="https://github.com/shon/httpagentparser",
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3'
],
include_package_data=True,
description='Extracts OS Browser etc information from http user agent string',
long_description=open("README.rst").read(),
packages=find_packages(),
author='Shekhar Tiwatne',
author_email='pythonic@gmail.com',
license="http://www.opensource.org/licenses/mit-license.php",
test_suite="tests",
)