-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
37 lines (37 loc) · 1.25 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
32
33
34
35
36
37
from setuptools import find_packages,setup
import djadmin
setup(
name=djadmin.__name__,
version=djadmin.__version__,
packages=find_packages(),
url='https://github.com/sainipray/djadmin',
author=djadmin.__author__,
author_email=djadmin.__author_email__,
description=djadmin.__description__,
license='MIT',
include_package_data=True,
install_requires=[
"geocoder","user_agents"
],
platforms=['any'],
zip_safe = False,
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development',
'Topic :: Software Development :: User Interfaces',
'Topic :: System :: Systems Administration',
],
)