-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (34 loc) · 1.11 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
36
37
38
39
"""
Firebase Python package is a python interface to the Google's Firebase REST APIs
By Joe Tilsed
---
setup.py is the build script for setuptools.
It tells setuptools about your package (such as the name and version) as well as which code files to include.
"""
import os
import setuptools
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
long_description = readme.read()
setuptools.setup(
name='firebase',
version="4.0.1",
author="Joe Tilsed",
author_email="[email protected]",
description="Python interface to the Google's Firebase REST APIs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://bitbucket.org/joetilsed/firebase/",
packages=setuptools.find_packages(),
install_requires=[
"requests"
],
classifiers=[
"Programming Language :: Python :: 3.10",
"Natural Language :: English",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
keywords="firebase python",
)
# That's all folks...