-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
25 lines (21 loc) · 860 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
import os
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
version = (this_directory / "version.txt").read_text().strip()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="django-firebase-auth",
version=version,
packages=find_packages(),
install_requires=["firebase-admin", "djangorestframework"],
url="https://github.com/maycuatroi/django-firebase-auth",
include_package_data=True,
license="MIT License",
description="Django authentication middle ware using Firebase Authentication Service",
long_description=long_description,
long_description_content_type="text/markdown",
author="Nguyen Anh Binh",
author_email="[email protected]",
)