-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 1.06 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
#!/usr/bin/env python
"""UWUM (Unified WeGovNow User Management) provider for django-allauth."""
from os import path
from setuptools import setup, find_packages
name = 'django-allauth-uwum'
version = __import__('allauth_uwum').__version__
repository = path.join('https://github.com/ExCiteS', name)
setup(
name=name,
version=version,
description='UWUM provider for django-allauth',
url=repository,
download_url=path.join(repository, 'tarball', version),
author='Julius Osokinas',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=['django-allauth >= 0.27.0'],
classifiers=[
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Django',
],
)