-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
34 lines (31 loc) · 1.07 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
#!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='pyfirebase',
version='1.3',
description="Firebase Python Plugin",
long_description="Built as an improvement on the python-firebase package built by ozgur",
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Natural Language :: English',
],
keywords='firebase python pyfirebase',
author='Chidiebere Nnadi',
author_email='[email protected]',
maintainer='Chidiebere Nnadi',
maintainer_email='[email protected]',
url='http://github.com/andela-cnnadi/pyfirebase',
license='MIT',
packages=['pyfirebase'],
test_suite='tests',
tests_require=['pytest'],
install_requires=['requests>=2.10.0', 'mock', 'sseclient'],
zip_safe=False,
)