-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
65 lines (61 loc) · 1.65 KB
/
pyproject.toml
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
[build-system]
requires = [
"flit_core >=2,<4",
"wheel",
"oldest-supported-numpy",
]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "einsteinpy_geodesics"
author = "Shreyas Bapat"
author-email = "[email protected]"
description-file = "README.rst"
home-page = "https://github.com/einsteinpy/einsteinpy-geodesics"
keywords = "aero,aerospace,engineering,astrodynamics,orbits,kepler,orbital mechanics"
classifiers = [
"License :: OSI Approved :: MIT License",
"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.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Astronomy",
]
requires-python = ">=3.7,<3.9"
requires = [
"numpy",
]
[tool.flit.metadata.requires-extra]
dev = [
"black",
"coverage",
"hypothesis",
"isort",
"mypy>=0.740",
"pycodestyle",
"pytest>=3.2",
"pytest-cov<2.6.0", # https://github.com/pytest-dev/pytest-cov/issues/222
"pytest-doctestplus",
"pytest-mpl",
"pytest-mypy",
"pytest-remotedata",
"sphinx",
"alabaster",
"tox",
]
[tool.flit.metadata.urls]
Source = "https://github.com/einsteinpy/einsteinpy-geodesics"
Tracker = "https://github.com/einsteinpy/einsteinpy-geodesics/issues"
[tool.flit.sdist]
include = [
"setup.cfg"
]
exclude = [
"docs/"
]