-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (29 loc) · 1.1 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
from setuptools import setup, find_packages
long_description = "firebaseWritableCheck is a simple utility allowing to check write access to any Firebase endpoint"
setup(
name="firebaseWritableCheck",
version="0.1",
description="Firebase Write Access Checker",
long_description=long_description,
url="https://github.com/rsenet/firebaseWritableCheck",
author="Régis SENET",
author_email="[email protected]",
license="GPLv3",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS'
'Topic :: Utilities',
'Topic :: Security',
],
packages=find_packages(),
python_requires='>3.6',
scripts=['firebaseWritableCheck.py'],
)