-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 978 Bytes
/
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
"""Setup module"""
from setuptools import setup
setup(
name='sade',
version='1.0',
description='Software Architecture with Document Embeddings',
author='Marios Papachristou',
author_email='papachristoumarios@gmail.com',
url='https://github.com/papachristoumarios/sade',
packages=[
'sade',
'sade.mojo',
'sade.limbo'],
package_dir={
'sade': 'sade',
'sade.mojo': 'sade/mojo'},
package_data={
'sade.mojo': ['sade/mojo/*.java']},
include_package_data=True,
scripts=[
'sade/clustering.py',
'sade/embeddings.py',
'sade/corrcoef.py',
'sade/limbo.py',
'sade/layerize.py',
'sade/community_detection.py',
'sade/autogen_module.py',
'sade/json_join.py',
'sade/call_graph_analysis.py',
'sade/simple_community_detection.py',
'sade/bow.py',
'sade/visualize_graphs.py',
'sade/visualize_radar.py'])