-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
76 lines (67 loc) · 1.55 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
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = [
"setuptools>=61",
"setuptools_scm[toml]>=6.2",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "psrqpy"
description = "A Python module for querying the ATNF pulsar catalogue"
authors = [
{ name = "Matthew Pitkin", email = "[email protected]" },
]
license = { text = "MIT" }
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
]
requires-python = ">=3.8, <4"
dependencies = [
"ads",
"appdirs",
"astropy>=3.2",
"beautifulsoup4",
"matplotlib",
"numpy>=1.16",
"packaging",
"pandas > 0.21",
"requests",
"scipy",
]
dynamic = [
"version",
]
[project.optional-dependencies]
test = [
"pytest >= 3.9.1",
"pytest-cov",
"pytest-socket",
]
docs = [
"autodoc",
"recommonmark",
"sphinx >= 2.0",
"sphinx_rtd_theme",
]
[project.urls]
"Source Code" = "https://github.com/mattpitkin/psrqpy"
"Documentation" = "https://psrqpy.readthedocs.io/"
[tool.setuptools]
license-files = [ "LICENSE" ]
include-package-data = true
[tool.setuptools.packages.find]
include = [
"psrqpy*",
]
[tool.setuptools_scm]
write_to = "psrqpy/_version.py"