Skip to content
This repository was archived by the owner on Jul 19, 2018. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:selwin/ua-parser
Browse files Browse the repository at this point in the history
Conflicts:
	setup.py
  • Loading branch information
selwin committed Dec 29, 2012
2 parents 39bbdd8 + 8b2770d commit 5bb2faa
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
15 changes: 15 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
The data contained in regexes.yaml is Copyright 2009 Google Inc. and available under the Apache License, Version 2.0.

The original python code is Copyright 2008 Google Inc. and is available under the Apache License, Version 2.0.

The JS port is Copyright 2010 Tobie Langel and is available under your choice of MIT or Apache Version 2.0 license.

The PHP port is Copyright (c) 2011-2012 Dave Olsen and is available under the MIT license.

The Java port is Copyright (c) 2012 Twitter, Inc and is available under the Apache License, Version 2.0.

The D port is Copyright (c) 2012 Shripad K and is available under the MIT license.

The C# port is Copyright (c) 2012 Søren Enemærke and is available under the Apache License, Version 2.0.

The Perl port is Copyright (c) 2012 Mamod Mehyar and is available under the Perl License, Version 5.10.1.
1 change: 1 addition & 0 deletions py/ua_parser/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VERSION = (0, 3, 0)
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ def run(self):


setup(
name='ua_parser',
version='1.0',
description='',
name='ua-parser',
version='0.3.0',
description="Python port of Browserscope's user agent parser",
author='PBS',
author_email='[email protected]',
packages=find_packages('py'),
Expand All @@ -45,9 +45,7 @@ def run(self):
include_package_data=True,
package_data={'': ['README.markdown']},
data_files=[('data', ['regexes.yaml'])],
install_requires=[
'pyyaml',
],
install_requires=['pyyaml'],
cmdclass={'install': install, 'develop': install},
classifiers=[
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 5bb2faa

Please sign in to comment.