We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb361c5 commit b1a8b47Copy full SHA for b1a8b47
1 file changed
setup.py
@@ -0,0 +1,18 @@
1
+from setuptools import setup
2
+import pathlib
3
+
4
+readme = pathlib.Path("README.md").read_text("utf-8")
5
6
+setup(
7
+ name="myloginpath",
8
+ license="MIT",
9
+ version="0.0.1",
10
+ description="MySQL login path file reader",
11
+ long_description=readme,
12
+ long_description_content_type="text/markdown",
13
+ url="https://github.com/PyMySQL/myloginpath/",
14
+ keywords="MySQL",
15
+ install_requires=["cryptography"],
16
+ python_requires='>=3.4',
17
+ py_modules=["myloginpath"],
18
+)
0 commit comments