-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
31 lines (28 loc) · 948 Bytes
/
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 os.path import dirname, join
from setuptools import setup, find_packages
from udger import __version__
setup(
name='udger',
version=__version__,
license='BSD',
author='The Udger Team',
author_email='[email protected]',
description="Fast and reliable User Agent parser and IP classifier for Python",
long_description_content_type='text/markdown',
url='https://github.com/udger/udger-python',
packages=find_packages(
exclude=('udger.tests',),
),
platforms='any',
zip_safe=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
],
)