-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 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
from setuptools import setup, find_packages
setup(
name='django-metagen',
packages=find_packages(exclude='example'),
include_package_data=True,
zip_safe=False,
version='0.0.2',
description='Metagen authentication app for django',
author='Gridworkz',
author_email='dave@gridworkz.com',
url='https://github.com/gridworkz/metagen-django',
keywords=['django', 'authentication', 'metagen', 'gridworkz'],
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Web Environment',
'Topic :: Internet',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Django',
],
)