diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 00000000..3df9b8d2 --- /dev/null +++ b/LICENSE.txt @@ -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. diff --git a/py/ua_parser/__init__.py b/py/ua_parser/__init__.py index e69de29b..e38940b2 100644 --- a/py/ua_parser/__init__.py +++ b/py/ua_parser/__init__.py @@ -0,0 +1 @@ +VERSION = (0, 3, 0) diff --git a/setup.py b/setup.py index 63369f0c..70cb3076 100644 --- a/setup.py +++ b/setup.py @@ -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='no-reply@pbs.org', packages=find_packages('py'), @@ -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',