-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
50 lines (47 loc) · 1.53 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
import os
from typing import List
from setuptools import setup, find_namespace_packages
from django_nats_nkeys import __version__
long_description: str = open(
os.path.join(os.path.dirname(__file__), "README.md")
).read()
install_requires = [
"coolname",
"django",
"psycopg2",
"django-extensions",
"django-organizations",
"nats-py[nkeys]",
]
extras = {"drf": ["djangorestframework"]}
python_requires = ">3.6.9"
setup(
name="django_nats_nkeys",
version=__version__,
packages=find_namespace_packages(exclude=["test", "tests", "config"]),
author="Leigh Johnson",
author_email="[email protected]",
description="Django NATS Nkey is a Django app to synchronize Django superusers, accounts, and users with NATS nkey-based authentization/authorization scheme",
long_description=long_description,
long_description_content_type="text/markdown",
license="GNU AGPLv3",
keywords="django NATS",
url="http://github.com/bitsy-ai/django-nats-nkey",
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Django",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
],
zip_safe=True,
install_requires=install_requires,
test_suite="pytest",
python_requires=python_requires,
include_package_data=True,
extras_require=extras,
)