-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
29 lines (27 loc) · 1013 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
26
27
28
29
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='matchbox-orm',
version='0.2.7',
description='matchbox is orm package for google Cloud Firestore',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/gameboy86/matchbox',
keywords='firebase orm firestore google cloud',
author='Maciej Gębarski',
author_email='mgebarski@gmail.com',
license='MIT',
packages=find_packages(exclude=['tests']),
zip_safe=False,
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=['firebase-admin>=2.16.0', 'iso8601>=0.1.12'],
)