Skip to content

Instantly share code, notes, and snippets.

@Ninpo
Last active January 24, 2019 23:08
Show Gist options
  • Save Ninpo/858f464a24c631cc1f76b13b7a808f41 to your computer and use it in GitHub Desktop.
Save Ninpo/858f464a24c631cc1f76b13b7a808f41 to your computer and use it in GitHub Desktop.
from setuptools import setup, find_packages
setup(name="myjibake",
description="Identify and fix mojibake problems in MySQL-like RDBMS",
author="Alex Boag-Munroe (Ninpo)",
version="0.1.0",
package_dir={"": "src"},
packages=find_packages("src"),
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Database",
],
entry_points={
"console_scripts": [
'myjibake = myjibake.cli:main'
]
},
install_requires=["click >=7.0,<8.0",
"trio >=0.10.0",
"trio_mysql >=0.8.0,
],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment