forked from zzyztyy/pyIGRF
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (38 loc) · 970 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
41
42
43
44
45
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
SRC_DIR = "src"
with open("README.md", mode = 'r', encoding = 'utf-8') as f:
readme = f.read()
setup(
name = "pyCRGI",
version = "0.4.0",
author = "pyCRGI authors",
author_email = "[email protected]",
description = "IGRF-13 Model in Python",
long_description = readme,
long_description_content_type = "text/markdown",
license = "MIT",
url = "https://github.com/pleiszenburg/pyCRGI",
packages = find_packages(SRC_DIR),
package_dir = {"": SRC_DIR},
install_requires = [],
extras_require = {
"jited": [
"numba",
"numpy",
],
"array": [
"numba",
"numpy",
],
"dev": [
"goto-statement",
"matplotlib",
"numpy",
"pexpect",
"tqdm",
"typeguard",
"zarr",
],
},
)