mirror of
https://github.com/mii443/akaza.git
synced 2025-08-22 14:55:31 +00:00
13 lines
245 B
Python
13 lines
245 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="akaza",
|
|
version="0.0.1",
|
|
install_requires=["marisa-trie==0.7.5", "jaconv==0.2.4"],
|
|
extras_require={
|
|
"develop": ["dev-packageA", "dev-packageB"]
|
|
},
|
|
entry_points={
|
|
}
|
|
)
|