-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
57 lines (49 loc) · 1.6 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
import os
from setuptools import find_packages, setup
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
version = "3.2.0"
tests_require = [
"pytest==7.1.2",
"pytest-cov",
]
dev_require = [
"black==23.12.1",
"flake8==4.0.1",
"mypy==0.961",
] + tests_require
setup(
name="graphene-federation",
packages=find_packages(exclude=["tests"]),
version=version,
license="MIT",
description="Federation implementation for graphene",
long_description=(read("README.md")),
long_description_content_type="text/markdown",
author="Igor Kasianov",
author_email="[email protected]",
url="https://github.com/graphql-python/graphene-federation",
download_url=f"https://github.com/graphql-python/graphene-federation/archive/{version}.tar.gz",
keywords=["graphene", "graphql", "gql", "federation"],
install_requires=[
"graphene>=3.1",
"graphql-core>=3.1",
"graphene-directives>=0.4.6",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
extras_require={
"test": tests_require,
"dev": dev_require,
},
)