-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (39 loc) · 886 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='kgpy',
version='0.0.1',
packages=find_packages(),
install_requires=[
'pytest',
'numpy',
'matplotlib',
'scipy',
'astropy',
'sunpy[all]',
'aiapy',
'pandas',
'wget',
'urlpath',
'shapely',
'ezdxf',
'sphinx-autodoc-typehints',
'astropy-sphinx-theme',
'jupyter-sphinx',
'roman',
'ipyparallel',
'adjustText',
'ChiantiPy',
'xrt',
'thermo',
'numba',
'pylatex',
'tensorflow',
'requests',
'paramiko',
],
url='https://github.com/Kankelborg-Group/kgpy',
license='',
author='Roy Smart',
author_email='[email protected]',
description='Repository for the Kankelborg Group\'s common codebase'
)