-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
12 lines (11 loc) · 709 Bytes
/
setup.py
File metadata and controls
12 lines (11 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
from distutils.core import setup
setup(name='uagent', packages=['uagent'], version='0.0.1',
description='Generates user agent strings. I wanted a user agent '
'generator that would cover a wide range of browser and '
'device types. This tools allows you to select witch type of user agent string to generate.',
author='Rangertaha', author_email='rangertaha@gmail.com',
url='https://github.com/rangertaha/uagent',
download_url='https://github.com/rangertaha/uagent/archive/master.zip',
keywords=['user', 'agent', 'random', 'generator', 'category',
'u-agent categories'],
classifiers=['Programming Language :: Python'], )