-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
50 lines (45 loc) · 1.58 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
'''
Standard setup.py to upload the code on pypi.
python setup.py sdist bdist_wheel
twine upload dist/*
'''
import setuptools
with open("README.md", "rb") as fh:
long_description = fh.read().decode("UTF-8")
import sys
sys.path.append("qnm")
from _version import __version__
setuptools.setup(
name="qnm",
version=__version__,
author="Leo C. Stein",
author_email="[email protected]",
description="Package for computing Kerr quasinormal mode frequencies, separation constants, and spherical-spheroidal mixing coefficients",
keywords='black holes quasinormal modes physics scientific computing numerical methods',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/duetosymmetry/qnm/",
project_urls={
"Bug Tracker": "https://github.com/duetosymmetry/qnm/issues",
"Documentation": "https://qnm.readthedocs.io/",
"Source Code": "https://github.com/duetosymmetry/qnm",
},
packages=setuptools.find_packages(),
package_data={'qnm':['schwarzschild/data/*','LICENSE']}, # TODO
install_requires=[
'numpy',
'scipy',
'numba',
'tqdm',
'pathlib2 ; python_version < \'3.4\'',
],
classifiers=[
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Operating System :: OS Independent",
],
)