-
Notifications
You must be signed in to change notification settings - Fork 228
/
setup.py
65 lines (59 loc) · 1.86 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import ast
import re
import sys
from setuptools import find_packages, setup
_version_re = re.compile(r"__version__\s+=\s+(.*)")
with open("graphene_sqlalchemy/__init__.py", "rb") as f:
version = str(
ast.literal_eval(_version_re.search(f.read().decode("utf-8")).group(1))
)
requirements = [
# To keep things simple, we only support newer versions of Graphene
"graphene>=3.0.0b7",
"promise>=2.3",
"SQLAlchemy>=1.1,<2",
"aiodataloader>=0.2.0,<1.0",
]
tests_require = [
"pytest>=6.2.0,<7.0",
"pytest-asyncio>=0.18.3",
"pytest-cov>=2.11.0,<3.0",
"sqlalchemy_utils>=0.37.0,<1.0",
"pytest-benchmark>=3.4.0,<4.0",
"aiosqlite>=0.17.0",
"nest-asyncio",
"greenlet",
]
setup(
name="graphene-sqlalchemy",
version=version,
description="Graphene SQLAlchemy integration",
long_description=open("README.rst").read(),
url="https://github.com/graphql-python/graphene-sqlalchemy",
author="Syrus Akbary",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",
],
keywords="api graphql protocol rest relay graphene",
packages=find_packages(exclude=["tests"]),
install_requires=requirements,
extras_require={
"dev": [
"tox==3.7.0", # Should be kept in sync with tox.ini
"pre-commit==2.19",
"flake8==4.0.0",
],
"test": tests_require,
},
tests_require=tests_require,
)