forked from preply/graphene-federation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 955 Bytes
/
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
import os
from setuptools import setup
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
version = '0.1.0'
setup(
name = 'graphene-federation',
packages = ['graphene_federation'],
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/preply/graphene-federation',
download_url = f'https://github.com/preply/graphene-federation/archive/{version}.tar.gz',
keywords = ['graphene', 'gql', 'federation'],
install_requires=[
"graphene>=2.1.0,<3"
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.6",
],
)