11#!/usr/bin/env python
2- from setuptools import setup , find_packages
3- from codecs import open
42import glob
5- import sys
63import os
4+ from codecs import open
75
6+ from setuptools import find_packages , setup
87
98data_files = []
109directories = glob .glob ('async_tls_client/dependencies/' )
1110for directory in directories :
12- files = glob .glob (directory + '*' )
11+ files = glob .glob (directory + '*' )
1312 data_files .append (('async_tls_client/dependencies' , files ))
1413
1514about = {}
2827 license = about ["__license__" ],
2928 long_description = readme ,
3029 long_description_content_type = "text/markdown" ,
30+ url = "https://github.com/diprog/python-tls-client-async" ,
3131 packages = find_packages (),
3232 include_package_data = True ,
3333 package_data = {
3434 '' : ['*' ],
3535 },
36+ python_requires = ">=3.9" ,
3637 classifiers = [
3738 "Environment :: Web Environment" ,
3839 "Intended Audience :: Developers" ,
4243 "Operating System :: Microsoft :: Windows" ,
4344 "Programming Language :: Python" ,
4445 "Programming Language :: Python :: 3" ,
45- "Programming Language :: Python :: 3.7" ,
46- "Programming Language :: Python :: 3.8" ,
4746 "Programming Language :: Python :: 3.9" ,
4847 "Programming Language :: Python :: 3.10" ,
4948 "Programming Language :: Python :: 3.11" ,
5251 "Topic :: Internet :: WWW/HTTP" ,
5352 "Topic :: Software Development :: Libraries" ,
5453 ],
54+ install_requires = ["typing-extensions" ],
5555 project_urls = {
56+ "Original Project" : "https://github.com/FlorianREGAZ/Python-Tls-Client" ,
57+ "Original PyPI" : "https://pypi.org/project/tls-client/" ,
5658 "Source" : "https://github.com/diprog/python-tls-client-async" ,
57- }
58- )
59+ },
60+ keywords = ["tls" , "asyncio" , "http-client" , "ja3" , "fingerprinting" ],
61+ )
0 commit comments