forked from lorien/user_agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.12 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
import os
ROOT = os.path.dirname(os.path.realpath(__file__))
setup(
name='user_agent',
version='0.1.1',
description='User-Agent generator',
long_description=open(os.path.join(ROOT, 'README.rst')).read(),
packages=find_packages(exclude=['script']),
install_requires=['six'],
license="MIT",
keywords="user agent browser navigator",
author="jamb0ss, Gregory Petukhov",
author_email='[email protected]',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
#'Programming Language :: Python :: Implementation :: CPython',
'License :: OSI Approved :: MIT License',
#'Development Status :: 5 - Production/Stable',
#'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
#'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP',
],
)