-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1.27 KB
/
setup.py
File metadata and controls
39 lines (38 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
setup(
name="csim",
version="1.7.0",
packages=find_packages(),
install_requires=[
"antlr4-python3-runtime==4.13.2",
"zss==1.2.0",
"numpy==1.26.4",
"apted==1.0.3"
],
author="Eddy Lecoña",
author_email="crew0eddy@gmail.com",
description="Code Similarity (csim) is a method designed to detect similarity between source codes",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url="https://github.com/EdsonEddy/csim",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
],
keywords="code analysis, similarity detection, tree parser, tree edit distance, code snippets, code comparison",
project_urls={
"Bug Tracker": "https://github.com/EdsonEddy/csim/issues",
"Documentation": "https://github.com/EdsonEddy/csim/wiki",
"Source Code": "https://github.com/EdsonEddy/csim",
},
python_requires='>=3.9',
platforms=["All"],
entry_points={
'console_scripts': [
'csim=csim.main:main',
],
},
license="MIT",
)