Skip to content

Commit 5e75454

Browse files
author
Florian
committed
updated setup
1 parent ac2244f commit 5e75454

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

setup.py

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
#!/usr/bin/env python
2-
from setuptools import setup, find_packages, Extension
2+
from setuptools import setup, find_packages
33
from codecs import open
44
import glob
5+
import sys
56
import os
67

8+
79
data_files = []
810
directories = glob.glob('tls_client/dependencies/')
911
for directory in directories:
@@ -40,7 +42,17 @@
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
)

0 commit comments

Comments
 (0)