-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 810 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
if __name__ == "__main__":
from setuptools import setup
setup(
name='af-words-clustering',
version='0.1.0',
description='Affinity propagation for words',
license="MIT",
author='Jakub Kawa',
author_email='kuba.kawa@hotmail.com',
url="https://github.com/Superzer0/TDA.Python",
keywords='clustering words affinity propagation',
packages=['.', 'console', 'objects', 'services', 'console.example_dataset'],
install_requires=['distance', 'numpy', 'scikit-learn', 'stemming'],
scripts=['__main__.py'],
package_data={
'console.example_dataset': ['example.txt'],
},
entry_points={
'console_scripts': [
'console=af_cluster:run',
]
}
)