forked from SourceCodeAnalyzingMachine/SCAM_Public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.47 KB
/
setup.py
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
import setuptools
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md")) as fh:
long_description = fh.read()
setuptools.setup(
name="scam",
version="0.3.12",
author="Codalyzers",
author_email="djoni.austin@gmail.com",
description="Source Code Analyzing Maching is an application for the analysis of similarities between source code files. Currently with Python, Java, C, and C++ file checking capabilities.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SourceCodeAnalyzingMachine/SCAM_Public",
# package_dir={"": "source"},
packages=setuptools.find_packages(), #where='source'
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=['javalang', 'PySide2', 'matplotlib','networkx','clang', 'pycparser', 'grave'],
include_package_data=True,
package_data={
"": [ "*.txt","*.py","*.png", "source/*.py","source/backend/*.py","source/frontend/*.py",
"source/frontend/*.png","source/frontend/gui/*.ui","source/frontend/pages/*.py","source/frontend/util/*.py"],
},
entry_points={
'console_scripts': [
'source_analyzer=source.scam:main',
'source-analyzer=source.scam:main',
'scam=source.scam:main',
],
},
)