mirror of
https://github.com/mii443/akaza.git
synced 2025-08-22 14:55:31 +00:00
19 lines
417 B
Python
19 lines
417 B
Python
import setuptools
|
|
|
|
setuptools.setup(
|
|
name="skkdictutils",
|
|
version="0.0.2",
|
|
install_requires=['romkan==0.2.1'],
|
|
extras_require={
|
|
},
|
|
entry_points={
|
|
},
|
|
packages=setuptools.find_packages(),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires='>=3.6',
|
|
)
|