mirror of
https://github.com/pruzko/hakuin
synced 2024-11-08 13:59:15 +01:00
17 lines
285 B
Python
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'
|
|
)
|