-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 880 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
32
#!/usr/bin/env python
from setuptools import find_packages, setup
with open('README.md') as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='django-allauth-d120',
version='0.0.8',
packages=find_packages(),
include_package_data=True,
license='AGPL',
description='Allauth provider for the D120 SSO',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/d120/django-allauth-d120',
author='ckleemann',
author_email='[email protected]',
install_requires=requirements,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)