Skip to content

Commit b1a8b47

Browse files
committed
Add setup script
1 parent fb361c5 commit b1a8b47

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

setup.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)