|
| 1 | +from setuptools import find_packages, setup |
| 2 | + |
| 3 | +setup( |
| 4 | + name='graphene-mongoengine', |
| 5 | + version='0.1.0', |
| 6 | + |
| 7 | + description='Graphene Mongoengine integration', |
| 8 | + long_description=open('README.rst').read(), |
| 9 | + |
| 10 | + url='https://github.com/abawchen/graphene-mongoengine', |
| 11 | + |
| 12 | + author='Abaw Chen', |
| 13 | + |
| 14 | + |
| 15 | + license='MIT', |
| 16 | + |
| 17 | + classifiers=[ |
| 18 | + 'Development Status :: 3 - Alpha', |
| 19 | + 'Intended Audience :: Developers', |
| 20 | + 'Topic :: Software Development :: Libraries', |
| 21 | + 'Programming Language :: Python :: 2.7', |
| 22 | + 'Programming Language :: Python :: 3', |
| 23 | + 'Programming Language :: Python :: 3.3', |
| 24 | + 'Programming Language :: Python :: 3.4', |
| 25 | + 'Programming Language :: Python :: 3.5', |
| 26 | + 'Programming Language :: Python :: Implementation :: PyPy', |
| 27 | + ], |
| 28 | + |
| 29 | + keywords='api graphql protocol rest relay graphene mongo mongoengine', |
| 30 | + |
| 31 | + packages=find_packages(exclude=['tests']), |
| 32 | + |
| 33 | + install_requires=[ |
| 34 | + 'graphene >=2.0', |
| 35 | + 'mongoengine>=0.15.0', |
| 36 | + 'singledispatch>=3.4.0.3', |
| 37 | + 'iso8601>=0.1.12' |
| 38 | + ], |
| 39 | + python_requires='>=2.7', |
| 40 | + zip_safe=True, |
| 41 | + setup_requires=['pytest-runner'], |
| 42 | + tests_require=[ |
| 43 | + 'pytest>=3.3.2', |
| 44 | + 'mock' |
| 45 | + ], |
| 46 | + test_suite="graphene_mongoengine.tests", |
| 47 | + |
| 48 | +) |
0 commit comments