-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
26 lines (23 loc) · 922 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "joern",
version = "0.1",
author = "Fabian Yamaguchi",
author_email = "[email protected]",
description = "A python interface to the code analysis tool joern.",
license = "GPLv3",
url = "http://github.com/fabsx00/",
long_description = read('README.md'),
packages = find_packages(),
package_data={"joern": ['joernsteps/*.groovy',
'joernsteps/learning/*.groovy',
'joernsteps/syntax/*.groovy',
'joernsteps/taintTracking/*.groovy',
'joernsteps/taintTracking/initGraphs/*.groovy',
'joernsteps/typeInference/*.groovy',
]},
install_requires = ['py2neo >= 2.0.7']
)