-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
31 lines (26 loc) · 842 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
import os
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
about = {}
with open(os.path.join("django_graphene_permissions", "__version__.py")) as f:
exec(f.read(), about)
setuptools.setup(
name="django_graphene_permissions",
version=about["__version__"],
author="Taoufik Abbassid",
author_email="[email protected]",
description="DRF like permission system for django graphene",
license='BSD',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/taoufik07/django-graphene-permissions",
packages=setuptools.find_packages(),
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Framework :: Django",
"Operating System :: OS Independent",
],
)