-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (36 loc) · 935 Bytes
/
setup.py
File metadata and controls
43 lines (36 loc) · 935 Bytes
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
#!/usr/bin/env python
import sys
import platform
import setuptools
from distutils.core import setup
dependencies = [
'numpy',
'numba',
'scikit-learn',
]
with open('README.md') as readme_file:
readme = readme_file.read()
setup(name = "qsin",
version = '0.11.18',
maintainer = 'Ulises Rosas',
packages = ['qsin'],
package_dir = {'qsin': 'src'},
package_data = {'qsin': ['data/*']} ,
include_package_data=True,
install_requires = dependencies,
zip_safe = False,
entry_points = {
'console_scripts': [
'path_subsampling.py = qsin.path_subsampling:main'
]
},
scripts=[
'./scripts/infer_qlls.jl',
'./scripts/sim_nets.R',
'./scripts/infer_nets_batches.jl',
# './src/path_subsampling.py'
],
classifiers = [
'Programming Language :: Python :: 3'
]
)