1
0
mirror of https://github.com/pruzko/hakuin synced 2024-11-08 15:59:24 +01:00
hakuin/setup.py
2022-11-10 14:20:15 +08:00

17 lines
285 B
Python

from setuptools import setup, find_packages
install_requires = [
'nltk',
'dill',
]
print(install_requires)
setuptools.setup(
name='hakuin',
version='0.0.1',
install_requires=install_requires,
packages=find_packages(),
python_requires='>=3'
)