Skip to content
This repository has been archived by the owner on Oct 21, 2022. It is now read-only.

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
erebus1 committed Aug 12, 2019
1 parent 09e5bde commit 240097c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include README.md LICENSE.txt
graft graphene_federation
global-exclude __pycache__
global-exclude *.py[co]
prune */.idea
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
from distutils.core import setup
import os
from setuptools import setup


def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name = 'graphene-federation',
packages = ['graphene_federation'],
version = '0.0.2',
license='MIT',
description = 'Federation implementation for graphene',
long_description=long_description,
long_description_content_type="text/markdown",
long_description=(read('README.md')),
long_description_content_type='text/markdown',
author = 'Igor Kasianov',
author_email = '[email protected]',
url = 'https://github.com/erebus1/graphene-federation',
Expand Down

0 comments on commit 240097c

Please sign in to comment.