-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.15 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
from src import __version__
from setuptools import setup, find_packages
def read_requirements():
with open('requirements.txt', 'r') as req:
content = req.read()
requirements = content.split('\n')
return requirements
setup(
name='ml4cgp_study',
version=__version__,
description='An Empirical Study on the Effectiveness of Machine Learning-based Call Graph Pruning',
packages=find_packages(),
install_requires=read_requirements(),
url='https://github.com/mir-am/ml4cgp_study',
author='Amir M. Mir (TU Delft)', # The main author
author_email='[email protected]',
license="GNU General Public License v3.0",
classifiers=[
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Operating System :: Unix',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules'
],
python_requries='>=3.9',
)