forked from einsteinpy/einsteinpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
93 lines (86 loc) · 1.98 KB
/
setup.cfg
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
81
82
83
84
85
86
87
88
89
90
91
92
93
[metadata]
name = einsteinpy
version = 0.2.dev0
author = Shreyas Bapat
author_email = bapat.shreyas@gmail.com
license = MIT
description = Python package for General Relativity
keywords =
general relativity
geodesics
relativity
kerr
black-hole
kerr-newman
schwarzschild
url = https://einsteinpy.org/
download_url = https://github.com/einsteinpy/einsteinpy
long_description = file: README.rst
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Physics
Topic :: Scientific/Engineering :: Astronomy
[options]
package_dir =
= src
packages = find:
zip_safe = False
install_requires =
numpy
astropy
matplotlib
scipy>=1.0
plotly>=3.0,<4.*
include_package_data = True
python_requires = >=3.5
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
einsteinpy = einsteinpy.cli:main
[options.extras_require]
dev =
sympy>=1.1
numba>=0.39 ; implementation_name=="cpython"
black ; python_version>="3.6"
coverage
isort
pytest
pytest-cov<2.6.0
pycodestyle
sphinx
alabaster
nbsphinx
ipython>=5.0
jupyter-client
ipykernel
ipywidgets
[tool:pytest]
norecursedirs =
.git
dist
build
python_files =
test_*.py
doctest_plus = disabled
addopts = --strict
markers =
slow
remote_data
filterwarnings
[pycodestyle]
ignore = E731,W504
max-line-length = 120
[flake8]
ignore = E731,W504,F401,F841
max-line-length = 120