Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gbip committed Feb 17, 2023
1 parent f910fc3 commit 116f998
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
Empty file added CHANGES.md
Empty file.
1 change: 1 addition & 0 deletions makina_django_oidc/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.1.0
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#!/usr/bin/env python


import os

from setuptools import setup, find_packages

HERE = os.path.abspath(os.path.dirname(__file__))

with open(os.path.join(HERE, 'README.md')) as readme_file, \
open(os.path.join(HERE, 'CHANGES.md')) as changes_file, \
open(os.path.join(HERE, 'makina_django_oidc', 'VERSION')) as version_file:
README = readme_file.read()
CHANGES = changes_file.read()
VERSION = version_file.read().strip()

from distutils.core import setup

setup(name='makina-django-oidc',
version='0.1',
description='Makina Django OIDC',
author='Makina Corpus',
author_email='[email protected]',
url='https://gitlab.makina-corpus.net/pfl/makina-django-oidc',
python_requires='>=3.7',
packages=find_packages(),
install_requires=[
'oic>=1.5.0',
'django>=3.2'
]
)

0 comments on commit 116f998

Please sign in to comment.