-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 869 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='rivr-jwt',
version='0.3.0',
description='Making authentication with JWT (JSON Web Token) and rivr simple.',
url='https://github.com/rivrproject/rivr-jwt',
packages=find_packages(),
package_data={
'rivr_jwt': ['py.typed'],
},
install_requires=[
'rivr>=0.9.0',
'PyJWT>=2.3.0',
],
author='Kyle Fuller',
author_email='[email protected]',
license='BSD',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: BSD License',
],
)