-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (53 loc) · 1.82 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup, Extension
import numpy as np
pymbc_module = Extension(
'pymbc',
sources = ['pymbc.c', 'bitset.c', 'bipartite_graph.c', 'lyu.c'],
include_dirs=[np.get_include()],
define_macros=[('_GNU_SOURCE',1)],
#undef_macros=['NDEBUG'],
extra_compile_args = ['-std=gnu99']
)
long_description = """
###########################
Maximum Biclique Search
###########################
===================
Introduction
------------
| An implementation of
| *Lyu, Bingqing, et al. "Maximum biclique search at billion scale." Proceedings of the VLDB Endowment (2020).*
|
"""
setup(
name='pymbc',
version='0.0.1',
description='Maximum Biclique Search',
long_description=long_description,
url='https://github.com/wonghang/pymbc',
author='wonghang',
author_email="[email protected]",
setup_requires=['numpy>=1.17.0'],
install_requires=['numpy>=1.17.0'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: C',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: Libraries',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
],
keywords='graph theory,biclique,maximum biclique search',
platforms = ["Linux"],
include_package_data=True,
ext_modules = [pymbc_module],
)