We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77946e5 commit 17f13bbCopy full SHA for 17f13bb
1 file changed
setup.py
@@ -0,0 +1,21 @@
1
+import setuptools
2
+
3
+with open("README.md", "r") as fh:
4
+ long_description = fh.read()
5
6
+setuptools.setup(
7
+ name="PythonIPQSDBReader",
8
+ version="0.0.1",
9
+ author="IPQualityScore",
10
+ author_email="support@ipqualityscore.com",
11
+ description="IPQualityScore IP Address Reputation & Proxy Detection DB Reader",
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
+ url="https://github.com/IPQualityScore/PythonIPQSDBReader",
15
+ packages=setuptools.find_packages(),
16
+ classifiers=[
17
+ "Programming Language :: Python :: 3",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Operating System :: OS Independent",
20
+ ]
21
+)
0 commit comments