-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
38 lines (35 loc) · 1.2 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='graphene_mongodb',
packages=find_packages(exclude=['tests', 'tests.*', 'examples', 'flask_example']),
version='1.0.1',
license='MIT',
description='GrapheneMongo is a library that integrates Graphene with MongoEngine',
long_description=long_description,
long_description_content_type='text/markdown',
author='João Vitor Silvestre',
author_email='joaovitorsilvestresousa@gmail.com',
url='https://github.com/joaovitorsilvestre/graphene-mongo',
download_url='https://github.com/joaovitorsilvestre/graphene-mongo/archive/1.0.1.tar.gz',
keywords=['graphene', 'graphql', 'mongo', 'mongodb', 'mongoDB', 'mongoengine', 'graphene-mongo', 'graphene-mongodb'],
classifiers=[],
install_requires=[
'aniso8601>=3.0.0',
'appdirs>=1.4.3',
'graphene>=2.1',
'graphql-core>=2.0',
'graphql-relay>=0.4.5',
'iso8601>=0.1.12',
'mongoengine>=0.15.0',
'promise>=2.1',
'pymongo>=3.6.1',
'pyparsing>=2.2.0',
'rx>=1.6.1',
'six>=1.11.0',
'typing>=3.6.4'
]
)