-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (32 loc) · 951 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
import sys
import subprocess
import re
import setuptools
from codecs import open
from os.path import (abspath, dirname, join)
import builtins
builtins.__ISABELAFUNCTIONS_SETUP__ = True
exec(open('IsabelaFunctions/version.py').read())
setuptools.setup(
name = "IsabelaFunctions",
version=__version__,
author = "Isabela de Oliveira",
author_email = "[email protected]",
keywords = "Functions",
description = "My functions",
packages = setuptools.find_packages(),
classifiers = [
"Development Status :: Beta ",
"Natural Language :: English",
"Programming Language :: Python : : 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering ::Magnetic Fields",
"license :: OSI Approved :: MIT License",
],
install_requires = [
"scipy",
"numpy",
"matplotlib",
"pyshtools",
],
)