Arkanjo 0.1
A tool for find code duplicated functions in codebases
Loading...
Searching...
No Matches
setup.py
Go to the documentation of this file.
1"""! @package setup
2@file setup.py
3@brief Package configuration for duplicate code detection tool.
4
5This setup configuration defines the installation parameters for the duplicate
6code detection tool package, including dependencies, version control, and
7console entry points.
8"""
9
10from setuptools import setup
11
12setup(
13 name='duplicate code detection tool',
14 entry_points={
15 'console_scripts': ['duplicate-code-detection=duplicate_code_detection:main']
16 },
17 py_modules=['duplicate_code_detection'],
18 package_dir={
19 'duplicate_code_detection': '.',
20 },
21 install_requires=[
22 'gensim>=3.8',
23 'nltk>=3.5',
24 'astor>=0.8.1'
25 ],
26 setuptools_git_versioning={
27 "enabled": True,
28 },
29 setup_requires=["setuptools-git-versioning<2"],
30)