-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.12 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
[project]
name = 'stregion'
description = 'python parser for ds9 region files'
readme = 'README.md'
requires-python = '>=3.9'
license = { file = 'LICENSE.txt' }
authors = [{ name = 'Jae-Joon Lee', email = '[email protected]' }]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Cython',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy',
]
dependencies = [
'numpy',
'pyparsing>=2.0.0'
]
dynamic = ['version']
[project.urls]
'repository' = 'http://github.com/spacetelescope/stregion'
'download' = 'http://github.com/spacetelescope/stregion/releases'
[build-system]
requires = [
'Cython',
'numpy>=2.0',
'setuptools >=61',
'setuptools_scm[toml] >=3.4',
'wheel',
]
build-backend = 'setuptools.build_meta'
[tool.setuptools_scm]
write_to = 'stregion/version.py'
[tool.setuptools.packages.find]
where = ['.']