-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
80 lines (67 loc) · 1.79 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/env python3
import setuptools
if __name__ == '__main__':
#
# This check is needed to allow multiprocessing tests to run
#
setuptools.setup(
name = 'xun',
version='1.0.0',
description = 'xun: package generated with cookiecutter-equinor',
author = 'Equinor',
author_email = 'jegm@equinor.com',
url = 'https://github.com/equinor/xun',
project_urls = {
'Documentation': 'https://xun.readthedocs.io/',
'Issue Tracker': 'https://github.com/equinor/xun/issues',
},
keywords = [
],
license = 'GNU General Public License v3',
packages = [
'xun',
'xun.functions',
'xun.functions.compatibility',
'xun.functions.driver',
'xun.functions.store',
'xun.init',
],
platforms = 'any',
include_package_data=True,
install_requires = [
'astor',
'cookiecutter',
'cryptography',
'dask[distributed]',
'immutables',
'matplotlib',
'nbformat',
'networkx',
'numpy',
'pandas',
'paramiko',
'redis',
'yapf',
],
setup_requires = [
'setuptools >=28',
'setuptools_scm',
'pytest-runner',
],
python_requires='>=3',
tests_require = [
'fakeredis',
'mock-ssh-server',
'pyshd',
'pytest',
'pyshd',
],
entry_points = {
'console_scripts': [
'xun = xun.cli:main',
],
},
use_scm_version = {
'write_to': 'xun/version.py',
},
)