-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
29 lines (28 loc) · 1012 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
from setuptools import setup, find_packages
setup(
name = 'django-smartagent',
version = '0.1.1',
description = 'django-smartagent is the fastest and most complete user agent parser',
long_description = open('README.rst').read(),
keywords = 'django apps',
license = 'BSD License',
author = 'James Pacileo',
author_email = '[email protected]',
url = 'http://github.com/jamespacileo/django-smartagent/',
dependency_links = [],
classifiers = [
'Environment :: Plugins',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages = ['smartagent'],
#packages = find_packages(exclude=['ez_setup', 'test_project']),
include_package_data = True,
zip_safe = False,
package_data = {
'smartagent': ['smartagent/agents_basic.pkl',],
},
)