File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change 11#!/usr/bin/env python
2- from setuptools import setup , find_packages , Extension
2+ from setuptools import setup , find_packages
33from codecs import open
44import glob
5+ import sys
56import os
67
8+
79data_files = []
810directories = glob .glob ('tls_client/dependencies/' )
911for directory in directories :
4042 "Operating System :: Microsoft :: Windows" ,
4143 "Programming Language :: Python" ,
4244 "Programming Language :: Python :: 3" ,
45+ "Programming Language :: Python :: 3.7" ,
46+ "Programming Language :: Python :: 3.8" ,
47+ "Programming Language :: Python :: 3.9" ,
48+ "Programming Language :: Python :: 3.10" ,
49+ "Programming Language :: Python :: 3.11" ,
50+ "Programming Language :: Python :: 3.12" ,
51+ "Programming Language :: Python :: 3 :: Only" ,
4352 "Topic :: Internet :: WWW/HTTP" ,
4453 "Topic :: Software Development :: Libraries" ,
45- ]
54+ ],
55+ project_urls = {
56+ "Source" : "https://github.com/FlorianREGAZ/Python-Tls-Client" ,
57+ }
4658)
You can’t perform that action at this time.
0 commit comments