|
2 | 2 |
|
3 | 3 | setup(
|
4 | 4 | name="graphene-mongo",
|
5 |
| - version="0.2.13", |
| 5 | + version="0.3.1", |
6 | 6 | description="Graphene Mongoengine integration",
|
7 | 7 | long_description=open("README.rst").read(),
|
8 | 8 | url="https://github.com/graphql-python/graphene-mongo",
|
9 | 9 | author="Abaw Chen",
|
10 | 10 |
|
11 | 11 | license="MIT",
|
12 | 12 | classifiers=[
|
13 |
| - "Development Status :: 4 - Beta", |
| 13 | + "Development Status :: 1 - Beta", |
14 | 14 | "Intended Audience :: Developers",
|
15 | 15 | "Topic :: Software Development :: Libraries",
|
16 |
| - "Programming Language :: Python :: 2.7", |
17 |
| - "Programming Language :: Python :: 3.4", |
18 |
| - "Programming Language :: Python :: 3.5", |
19 | 16 | "Programming Language :: Python :: 3.6",
|
20 | 17 | "Programming Language :: Python :: 3.8",
|
| 18 | + "Programming Language :: Python :: 3.9", |
21 | 19 | "Programming Language :: Python :: Implementation :: PyPy",
|
22 | 20 | "License :: OSI Approved :: MIT License",
|
23 | 21 | ],
|
24 | 22 | keywords="api graphql protocol rest relay graphene mongo mongoengine",
|
25 | 23 | packages=find_packages(exclude=["tests"]),
|
26 | 24 | install_requires=[
|
27 |
| - "graphene>=2.1.3,<3", |
| 25 | + "graphene==3.0b7", |
| 26 | + "promise==2.3", |
28 | 27 | "mongoengine>=0.23.0",
|
29 | 28 | "singledispatch>=3.4.0.3",
|
30 | 29 | "iso8601>=0.1.12",
|
31 | 30 | 'futures; python_version < "3.0"'
|
32 | 31 | ],
|
33 |
| - python_requires=">=2.7", |
| 32 | + python_requires=">=3.6", |
34 | 33 | zip_safe=True,
|
35 | 34 | tests_require=["pytest>=3.3.2", "mongomock", "mock"],
|
36 | 35 | )
|
0 commit comments