-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
31 lines (30 loc) · 923 Bytes
/
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
[metadata]
name = cephes4py
version = 0.0.2
author = Jon Cavallie Mester
author_email = jonmester3@gmail.com
classifiers =
Development Status :: 1 - Planning
Environment :: Console
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
description = Numba-friendly Python bindings to Cephes math library
download_url = https://github.com/limix/ncephes
keywords = cephes, netlib, math, numba, jit
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown
maintainer = Jon Cavallie Mester
platforms = Windows, MacOS, Linux
maintainer_email = jonmester3@gmail.com
url = https://github.com/jonmest/cephes4py
[options]
install_requires =
numpy >= 1.21.0
cffi >= 1.15.0
packages = find:
py_modules=["cephes4py"]
cffi_modules=["./cephes4py/build_hcephes.py:ffibuilder"]
zip_safe = False
include_package_data = True