forked from pantheon-systems/ariadne-extensions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (42 loc) · 1.3 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
#!/usr/bin/env python
from os import path
from setuptools import setup
with open(
path.join(path.abspath(path.dirname(__file__)), "README.md"), encoding="utf-8"
) as f:
LONG_DESCRIPTION = f.read()
TEST_DEPENDECIES = [
"pytest-cov",
"pytest",
"pylint",
"pytest-runner",
"black",
"coveralls",
]
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
]
INSTALL_DEPENDECIES = ["ariadne"]
setup(
name="ariadne-extensions",
description="Set of scripts and helper utilities to extend Ariadne GraphQL library",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
version="0.1.4",
url="https://github.com/aleszoulek/ariadne-extensions",
author="Ales Zoulek",
author_email="[email protected]",
packages=["ariadne_extensions"],
setup_requires=[],
install_requires=INSTALL_DEPENDECIES,
tests_require=TEST_DEPENDECIES,
extras_require={"test": TEST_DEPENDECIES},
classifiers=CLASSIFIERS,
)