1
1
from setuptools import setup , find_namespace_packages
2
2
3
3
setup (
4
- name = ' permit-components' ,
5
- version = ' 0.1.0' ,
6
- packages = find_namespace_packages (include = [' base.*' , ' components.*' ]),
4
+ name = " permit-components" ,
5
+ version = " 0.1.0" ,
6
+ packages = find_namespace_packages (include = [" base.*" , " components.*" ]),
7
7
install_requires = [
8
- ' requests>=2.32.3' ,
9
- ' python-jwt==4.1.0' ,
10
- ' permit>=2.7.2,<3.0.0' ,
11
- ' langflow==1.1.4.post1' ,
12
- ' cryptography>=42.0.5' ,
8
+ " requests>=2.32.3" ,
9
+ " python-jwt==4.1.0" ,
10
+ " permit>=2.7.2,<3.0.0" ,
11
+ " langflow==1.1.4.post1" ,
12
+ " cryptography>=42.0.5" ,
13
13
],
14
- author = ' Ekekenta Clinton' ,
15
-
16
- description = ' Permit.io authentication components for Langflow' ,
17
- long_description = open (' README.md' , encoding = ' utf-8' ).read (),
18
- long_description_content_type = ' text/markdown' ,
19
- url = ' https://github.com/permitio/permit-components' ,
20
- license = ' MIT' ,
14
+ author = " Ekekenta Clinton" ,
15
+
16
+ description = " Permit.io authentication components for Langflow" ,
17
+ long_description = open (" README.md" , encoding = " utf-8" ).read (),
18
+ long_description_content_type = " text/markdown" ,
19
+ url = " https://github.com/permitio/permit-components" ,
20
+ license = " MIT" ,
21
21
classifiers = [
22
- ' Development Status :: 3 - Alpha' ,
23
- ' Intended Audience :: Developers' ,
24
- ' License :: OSI Approved :: MIT License' ,
25
- ' Programming Language :: Python :: 3' ,
26
- ' Programming Language :: Python :: 3.8' ,
27
- ' Programming Language :: Python :: 3.9' ,
28
- ' Programming Language :: Python :: 3.10' ,
22
+ " Development Status :: 3 - Alpha" ,
23
+ " Intended Audience :: Developers" ,
24
+ " License :: OSI Approved :: MIT License" ,
25
+ " Programming Language :: Python :: 3" ,
26
+ " Programming Language :: Python :: 3.8" ,
27
+ " Programming Language :: Python :: 3.9" ,
28
+ " Programming Language :: Python :: 3.10" ,
29
29
],
30
- python_requires = ' >=3.8' ,
31
- )
30
+ python_requires = " >=3.8" ,
31
+ )
0 commit comments