-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
51 lines (37 loc) · 1.02 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
from __future__ import absolute_import, division, print_function
from builtins import (bytes, str, open, super, range,
zip, round, input, int, pow, object, map, zip)
import re
__author__ = 'andrea tramacere'
#!/usr/bin/env python
from setuptools import setup, find_packages
import glob
install_req = [
'cdci_data_analysis',
'astropy',
'simple_logger',
'numpy',
]
test_req = [
'cdci_data_analysis[test]',
'pytest',
'pytest-depends',
]
packs=find_packages()
print ('packs', packs)
include_package_data = True
scripts_list=glob.glob('./bin/*')
setup(name='cdci_osa_plugin',
version=1.0,
description='A OSA plugin for CDCI online data analysis',
author='Andrea Tramacere',
author_email='[email protected]',
scripts=scripts_list,
packages=packs,
package_data={'cdci_osa_plugin':['config_dir/*']},
include_package_data=True,
install_requires=install_req,
extras_require={
'test': test_req
}
)